Browse Source

org.el (org-check-agenda-file): Use a more explicit message

Requested by Daniel Clemente.
Bastien Guerry 15 năm trước cách đây
mục cha
commit
6c7f8790fb
2 tập tin đã thay đổi với 5 bổ sung1 xóa
  1. 4 0
      lisp/ChangeLog
  2. 1 1
      lisp/org.el

+ 4 - 0
lisp/ChangeLog

@@ -1,3 +1,7 @@
+2009-09-09  Bastien Guerry  <bzg@altern.org>
+
+	* org.el (org-check-agenda-file): Use a more explicit message
+
 2009-09-08  Carsten Dominik  <carsten.dominik@gmail.com>
 
 	* org-exp.el (org-export-remove-special-table-lines): Don't remove

+ 1 - 1
lisp/org.el

@@ -13788,7 +13788,7 @@ Optional argument FILE means, use this file instead of the current."
 (defun org-check-agenda-file (file)
   "Make sure FILE exists.  If not, ask user what to do."
   (when (not (file-exists-p file))
-    (message "non-existent file %s. [R]emove from list or [A]bort?"
+    (message "non-existent agenda file %s. [R]emove from list or [A]bort?"
 	     (abbreviate-file-name file))
     (let ((r (downcase (read-char-exclusive))))
       (cond