Browse Source

org-attach.el: Tiny formatting fix

* lisp/org-attach.el (org-attach-attach): Tiny formatting fix.
Bastien 5 years ago
parent
commit
47b1042c4c
1 changed files with 2 additions and 2 deletions
  1. 2 2
      lisp/org-attach.el

+ 2 - 2
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."