emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[O] [PATCH] org-attach: exchange the docstrings of org-attach-reveal and


From: Nicolas Richard
Subject: [O] [PATCH] org-attach: exchange the docstrings of org-attach-reveal and org-attach-reveal-in-emacs
Date: Wed, 09 Jan 2013 17:20:19 +0100
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.2 (gnu/linux)

Hi again,

This is a small very obvious docstring fix.


From: "Nicolas Richard" <address@hidden>
Date: Wed, 12 Dec 2012 19:09:58 +0100

* lisp/org-attach.el (org-attach-reveal, org-attach-reveal-in-emacs): Fix the 
docstrings.
---
 lisp/org-attach.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lisp/org-attach.el b/lisp/org-attach.el
index 3154e5e..51a8995 100644
--- a/lisp/org-attach.el
+++ b/lisp/org-attach.el
@@ -425,14 +425,14 @@ This ignores files starting with a \".\", and files 
ending in \"~\"."
                (directory-files dir nil "[^~]\\'"))))
 
 (defun org-attach-reveal (&optional if-exists)
-  "Show the attachment directory of the current task in dired."
+  "Show the attachment directory of the current task.
+This will attempt to use an external program to show the directory."
   (interactive "P")
   (let ((attach-dir (org-attach-dir (not if-exists))))
     (and attach-dir (org-open-file attach-dir))))
 
 (defun org-attach-reveal-in-emacs ()
-  "Show the attachment directory of the current task.
-This will attempt to use an external program to show the directory."
+  "Show the attachment directory of the current task in dired."
   (interactive)
   (let ((attach-dir (org-attach-dir t)))
     (dired attach-dir)))
-- 
1.8.1





reply via email to

[Prev in Thread] Current Thread [Next in Thread]