summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Richard <theonewiththeevillook@yahoo.fr>2012-12-12 19:09:58 +0100
committerBastien Guerry <bzg@altern.org>2013-01-09 18:01:54 +0100
commitda0276cba51a545773bc43613d83da136c61e854 (patch)
tree0f1a2bfc406cf4b74a14e69bedddf3b4203a50c0
parentf82004840a20538452000026c12db28704c6dac7 (diff)
downloadorg-mode-da0276cba51a545773bc43613d83da136c61e854.tar.gz
* org-attach.el (org-attach-reveal, org-attach-reveal-in-emacs): Fix the docstrings.
-rw-r--r--lisp/org-attach.el6
1 files 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)))