1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

(c-mode-map): Use "C-mode", not "C mode".

This commit is contained in:
Richard M. Stallman 1995-03-20 00:06:30 +00:00
parent ffbdd83d7d
commit c5c170d083

View file

@ -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))