From: Richard M. Stallman Date: Mon, 20 Mar 1995 00:06:30 +0000 (+0000) Subject: (c-mode-map): Use "C-mode", not "C mode". X-Git-Tag: emacs-19.34~4790 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c5c170d083ec3b6ba386d676afccd08dc5a25a0e;p=emacs.git (c-mode-map): Use "C-mode", not "C mode". --- diff --git a/lisp/progmodes/c-mode.el b/lisp/progmodes/c-mode.el index b0c962dcae1..266cd330ca3 100644 --- a/lisp/progmodes/c-mode.el +++ b/lisp/progmodes/c-mode.el @@ -53,8 +53,11 @@ (define-key c-mode-map [menu-bar] (make-sparse-keymap)) +;; "C-mode" is not strictly the right punctuation--it should be "C +;; mode"--but that would look like two menu items. "C-mode" is the +;; best alternative I can think of. (define-key c-mode-map [menu-bar c] - (cons "C Mode" (make-sparse-keymap "C Mode"))) + (cons "C-mode" (make-sparse-keymap "C-mode"))) (define-key c-mode-map [menu-bar c comment-region] '("Comment Out Region" . comment-region))