summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien <bzg@gnu.org>2020-01-26 19:16:01 +0100
committerBastien <bzg@gnu.org>2020-01-26 19:16:01 +0100
commit47b1042c4c1fe9b9a7d3d27043d3d2963c113d4a (patch)
tree634a3e202eb5ef3fe781eb86e4bc2101742701be
parenta3c373a1bf65c29f2d74a4b401844f099de4253f (diff)
downloadorg-mode-47b1042c4c1fe9b9a7d3d27043d3d2963c113d4a.tar.gz
org-attach.el: Tiny formatting fix
* lisp/org-attach.el (org-attach-attach): Tiny formatting fix.
-rw-r--r--lisp/org-attach.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/org-attach.el b/lisp/org-attach.el
index 372fa4f..ce1bf9b 100644
--- a/lisp/org-attach.el
+++ b/lisp/org-attach.el
@@ -491,7 +491,7 @@ METHOD may be `cp', `mv', `ln', `lns' or `url' default taken from
`org-attach-method'."
(interactive
(list
- (read-file-name "File to keep as an attachment:"
+ (read-file-name "File to keep as an attachment: "
(or (progn
(require 'dired-aux)
(dired-dwim-target-directory))
@@ -516,7 +516,7 @@ METHOD may be `cp', `mv', `ln', `lns' or `url' default taken from
(org-attach-store-link file)))
(if visit-dir
(dired attach-dir)
- (message "File %S is now an attachment." basename)))))
+ (message "File %S is now an attachment" basename)))))
(defun org-attach-attach-cp ()
"Attach a file by copying it."