diff options
author | Karl Heuer <kwzh@gnu.org> | 1995-05-30 23:05:08 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1995-05-30 23:05:08 +0000 |
commit | 3a5abbaa00ac389b9bc824fce8f2216d620a9a08 (patch) | |
tree | 5e51e989b82e0cdcf761ec33f1d7c5eff615084f /lisp/bookmark.el | |
parent | f50ff6f15fd2fc4dd02e74b8d6becdb9696f99f5 (diff) | |
download | emacs-3a5abbaa00ac389b9bc824fce8f2216d620a9a08.tar.gz |
Fix capitalization in menu bar.
Diffstat (limited to 'lisp/bookmark.el')
-rw-r--r-- | lisp/bookmark.el | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lisp/bookmark.el b/lisp/bookmark.el index b31e711e02e..6c6902ebe65 100644 --- a/lisp/bookmark.el +++ b/lisp/bookmark.el @@ -2038,7 +2038,7 @@ one most recently used in this file, if any\)." ;;;###autoload (define-key menu-bar-bookmark-map [load] - '("Load a bookmark file" . bookmark-load)) + '("Load a Bookmark File" . bookmark-load)) ;;;###autoload (define-key menu-bar-bookmark-map [write] @@ -2054,27 +2054,27 @@ one most recently used in this file, if any\)." ;;;###autoload (define-key menu-bar-bookmark-map [delete] - '("Delete bookmark" . bookmark-menu-delete)) + '("Delete Bookmark" . bookmark-menu-delete)) ;;;###autoload (define-key menu-bar-bookmark-map [rename] - '("Rename bookmark" . bookmark-menu-rename)) + '("Rename Bookmark" . bookmark-menu-rename)) ;;;###autoload (define-key menu-bar-bookmark-map [locate] - '("Insert location" . bookmark-menu-locate)) + '("Insert Location" . bookmark-menu-locate)) ;;;###autoload (define-key menu-bar-bookmark-map [insert] - '("Insert contents" . bookmark-menu-insert)) + '("Insert Contents" . bookmark-menu-insert)) ;;;###autoload (define-key menu-bar-bookmark-map [set] - '("Set bookmark" . bookmark-set)) + '("Set Bookmark" . bookmark-set)) ;;;###autoload (define-key menu-bar-bookmark-map [jump] - '("Jump to bookmark" . bookmark-menu-jump)) + '("Jump to Bookmark" . bookmark-menu-jump)) ;;;; end bookmark menu stuff ;;;; |