summaryrefslogtreecommitdiff
path: root/lisp/progmodes/cc-langs.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1998-06-10 18:54:27 +0000
committerRichard M. Stallman <rms@gnu.org>1998-06-10 18:54:27 +0000
commit90276e7696a164b24852580b2b7de4ddeb93b8af (patch)
tree8ef673e46b2a5350d75a051a24d93c1e5ef94540 /lisp/progmodes/cc-langs.el
parent409cb01a04b587ae7a95c9e0505a47adb5857277 (diff)
downloademacs-90276e7696a164b24852580b2b7de4ddeb93b8af.tar.gz
(c-mode-menu): Use (mark t), not (mark), in enable-expressions.
Diffstat (limited to 'lisp/progmodes/cc-langs.el')
-rw-r--r--lisp/progmodes/cc-langs.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/progmodes/cc-langs.el b/lisp/progmodes/cc-langs.el
index 6aac38aa532..96fdf35948e 100644
--- a/lisp/progmodes/cc-langs.el
+++ b/lisp/progmodes/cc-langs.el
@@ -399,10 +399,10 @@ Note that the style variables are always made local to the buffer."
(defun c-mode-menu (modestr)
(let ((m
- '(["Comment Out Region" comment-region (mark)]
+ '(["Comment Out Region" comment-region (mark t)]
["Uncomment Region"
(comment-region (region-beginning) (region-end) '(4))
- (mark)]
+ (mark t)]
["Fill Comment Paragraph" c-fill-paragraph t]
"---"
["Indent Expression" c-indent-exp
@@ -414,8 +414,8 @@ Note that the style variables are always made local to the buffer."
["Backward Statement" c-beginning-of-statement t]
["Forward Statement" c-end-of-statement t]
"---"
- ["Macro Expand Region" c-macro-expand (mark)]
- ["Backslashify" c-backslash-region (mark)]
+ ["Macro Expand Region" c-macro-expand (mark t)]
+ ["Backslashify" c-backslash-region (mark t)]
)))
(cons modestr m)))