aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1995-05-30 22:42:32 +0000
committerKarl Heuer1995-05-30 22:42:32 +0000
commit0949ba2b07eb703f0337f86530d8022e16b3db2a (patch)
tree83c0e86feb65ac82ace36210df975b2381776a46
parent1def9aec5355c1ba093681726ea1284ab98e43a3 (diff)
downloademacs-0949ba2b07eb703f0337f86530d8022e16b3db2a.tar.gz
emacs-0949ba2b07eb703f0337f86530d8022e16b3db2a.zip
(compilation-mode-map): Fix capitalization in menu bar.
-rw-r--r--lisp/progmodes/compile.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el
index 03e6456c4e3..6e16be1f002 100644
--- a/lisp/progmodes/compile.el
+++ b/lisp/progmodes/compile.el
@@ -456,15 +456,15 @@ Returns the compilation buffer created."
456 (cons "Compile" (make-sparse-keymap "Compile"))) 456 (cons "Compile" (make-sparse-keymap "Compile")))
457 457
458 (define-key map [menu-bar compilation-menu compilation-mode-kill-compilation] 458 (define-key map [menu-bar compilation-menu compilation-mode-kill-compilation]
459 '("Stop compilation" . kill-compilation)) 459 '("Stop Compilation" . kill-compilation))
460 (define-key map [menu-bar compilation-menu compilation-mode-separator2] 460 (define-key map [menu-bar compilation-menu compilation-mode-separator2]
461 '("----" . nil)) 461 '("----" . nil))
462 (define-key map [menu-bar compilation-menu compilation-mode-first-error] 462 (define-key map [menu-bar compilation-menu compilation-mode-first-error]
463 '("First error" . first-error)) 463 '("First Error" . first-error))
464 (define-key map [menu-bar compilation-menu compilation-mode-previous-error] 464 (define-key map [menu-bar compilation-menu compilation-mode-previous-error]
465 '("Previous error" . previous-error)) 465 '("Previous Error" . previous-error))
466 (define-key map [menu-bar compilation-menu compilation-mode-next-error] 466 (define-key map [menu-bar compilation-menu compilation-mode-next-error]
467 '("Next error" . next-error)) 467 '("Next Error" . next-error))
468 (define-key map [menu-bar compilation-menu compilation-separator2] 468 (define-key map [menu-bar compilation-menu compilation-separator2]
469 '("----" . nil)) 469 '("----" . nil))
470 (define-key map [menu-bar compilation-menu compilation-mode-grep] 470 (define-key map [menu-bar compilation-menu compilation-mode-grep]