branch: externals/org
commit 60564a0774bf8e77047b522e1518c7bba0f27858
Author: Rudolf Adamkovič <[email protected]>
Commit: Rudolf Adamkovič <[email protected]>
Re-capitalize the Agenda sub-menu
* lisp/org-agenda.el (org-agenda-mode):
* lisp/org.el (org-install-agenda-files-menu): Harmonize the
capitalization of the "File List for Agenda" sub-menu, to match the
title-case capitalization style used in Emacs.
---
lisp/org-agenda.el | 2 +-
lisp/org.el | 8 ++++----
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el
index 3497a9763e..9f772b6743 100644
--- a/lisp/org-agenda.el
+++ b/lisp/org-agenda.el
@@ -2391,7 +2391,7 @@ The following commands are available:
(list
(vector
(if (get 'org-agenda-files 'org-restrict)
- "Restricted to single file"
+ "Restricted to Single File"
"Edit File List")
'(org-edit-agenda-file-list)
(not (get 'org-agenda-files 'org-restrict)))
diff --git a/lisp/org.el b/lisp/org.el
index 93f7c6074d..ed012d2e61 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -18910,10 +18910,10 @@ Your bug report will be posted to the Org mailing
list.
(append
(list
["Edit File List" (org-edit-agenda-file-list) t]
- ["Add/Move Current File to Front of List" org-agenda-file-to-front t]
- ["Remove Current File from List" org-remove-file t]
- ["Cycle through agenda files" org-cycle-agenda-files t]
- ["Occur in all agenda files" org-occur-in-agenda-files t]
+ ["Add/Move Current File to Front" org-agenda-file-to-front t]
+ ["Remove Current File" org-remove-file t]
+ ["Cycle Through Files" org-cycle-agenda-files t]
+ ["Occur in Files" org-occur-in-agenda-files t]
"--")
(mapcar 'org-file-menu-entry
;; Prevent initialization from failing.