From 0949ba2b07eb703f0337f86530d8022e16b3db2a Mon Sep 17 00:00:00 2001
From: Karl Heuer <kwzh@gnu.org>
Date: Tue, 30 May 1995 22:42:32 +0000
Subject: [PATCH] (compilation-mode-map): Fix capitalization in menu bar.

---
 lisp/progmodes/compile.el | 8 ++++----
 1 file 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."
       (cons "Compile" (make-sparse-keymap "Compile")))
 
     (define-key map [menu-bar compilation-menu compilation-mode-kill-compilation]
-      '("Stop compilation" . kill-compilation))
+      '("Stop Compilation" . kill-compilation))
     (define-key map [menu-bar compilation-menu compilation-mode-separator2]
       '("----" . nil))
     (define-key map [menu-bar compilation-menu compilation-mode-first-error]
-      '("First error" . first-error))
+      '("First Error" . first-error))
     (define-key map [menu-bar compilation-menu compilation-mode-previous-error]
-      '("Previous error" . previous-error))
+      '("Previous Error" . previous-error))
     (define-key map [menu-bar compilation-menu compilation-mode-next-error]
-      '("Next error" . next-error))
+      '("Next Error" . next-error))
     (define-key map [menu-bar compilation-menu compilation-separator2]
       '("----" . nil))
     (define-key map [menu-bar compilation-menu compilation-mode-grep]