]> git.eshelyaron.com Git - emacs.git/commitdiff
(sh-mode-map): Fix capitalization in menu bar.
authorKarl Heuer <kwzh@gnu.org>
Tue, 30 May 1995 23:06:00 +0000 (23:06 +0000)
committerKarl Heuer <kwzh@gnu.org>
Tue, 30 May 1995 23:06:00 +0000 (23:06 +0000)
lisp/progmodes/sh-script.el

index c04a31607da0047d8328fc8a8d2549c5a7a27b1e..c590adb64916c4f4ec955229a48be48dc0c72621 100644 (file)
     (define-key map [menu-bar insert] 
       (cons "Insert" (make-sparse-keymap "Insert")))
     (define-key map [menu-bar insert sh-while] 
-      '("While loop" . sh-while))
+      '("While Loop" . sh-while))
     (define-key map [menu-bar insert sh-until] 
-      '("Until loop" . sh-until))
+      '("Until Loop" . sh-until))
     (define-key map [menu-bar insert sh-select] 
-      '("Select statement" . sh-select))
+      '("Select Statement" . sh-select))
     (define-key map [menu-bar insert sh-indexed-loop] 
-      '("Indexed loop" . sh-indexed-loop))
+      '("Indexed Loop" . sh-indexed-loop))
     (define-key map [menu-bar insert sh-if] 
-      '("If statement" . sh-if))
+      '("If Statement" . sh-if))
     (define-key map [menu-bar insert sh-for] 
-      '("For loop" . sh-for))
+      '("For Loop" . sh-for))
     (define-key map [menu-bar insert sh-case] 
-      '("Case statement" . sh-case))
+      '("Case Statement" . sh-case))
     map)
   "Keymap used in Shell-Script mode.")