From: Nicolas Richard Date: Wed, 12 Dec 2012 18:09:58 +0000 (+0100) Subject: * org-attach.el (org-attach-reveal, org-attach-reveal-in-emacs): Fix the docstrings. X-Git-Tag: release_8.0-pre~557 X-Git-Url: https://repo.or.cz/w/org-mode.git/commitdiff_plain/da0276cba51a545773bc43613d83da136c61e854 * org-attach.el (org-attach-reveal, org-attach-reveal-in-emacs): Fix the docstrings. --- diff --git a/lisp/org-attach.el b/lisp/org-attach.el index 3154e5e87..51a899589 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)))