aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman1995-03-20 00:06:30 +0000
committerRichard M. Stallman1995-03-20 00:06:30 +0000
commitc5c170d083ec3b6ba386d676afccd08dc5a25a0e (patch)
tree1a5d87c74d8e2c8422f70a6a5f0e60cce08b7a24 /lisp
parentffbdd83d7d8136c977ecd6abaa4d592b0f2c1992 (diff)
downloademacs-c5c170d083ec3b6ba386d676afccd08dc5a25a0e.tar.gz
emacs-c5c170d083ec3b6ba386d676afccd08dc5a25a0e.zip
(c-mode-map): Use "C-mode", not "C mode".
Diffstat (limited to 'lisp')
-rw-r--r--lisp/progmodes/c-mode.el5
1 files changed, 4 insertions, 1 deletions
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 @@
53 53
54(define-key c-mode-map [menu-bar] (make-sparse-keymap)) 54(define-key c-mode-map [menu-bar] (make-sparse-keymap))
55 55
56;; "C-mode" is not strictly the right punctuation--it should be "C
57;; mode"--but that would look like two menu items. "C-mode" is the
58;; best alternative I can think of.
56(define-key c-mode-map [menu-bar c] 59(define-key c-mode-map [menu-bar c]
57 (cons "C Mode" (make-sparse-keymap "C Mode"))) 60 (cons "C-mode" (make-sparse-keymap "C-mode")))
58 61
59(define-key c-mode-map [menu-bar c comment-region] 62(define-key c-mode-map [menu-bar c comment-region]
60 '("Comment Out Region" . comment-region)) 63 '("Comment Out Region" . comment-region))