# HG changeset patch # User Richard M. Stallman # Date 897504867 0 # Node ID 76aa8f3934bfc3d56aa434c29b3e1e8855e8d019 # Parent 1eba71735142c7210371d586f49f674a263a99cb (c-mode-menu): Use (mark t), not (mark), in enable-expressions. diff -r 1eba71735142 -r 76aa8f3934bf lisp/progmodes/cc-langs.el --- a/lisp/progmodes/cc-langs.el Wed Jun 10 05:08:04 1998 +0000 +++ b/lisp/progmodes/cc-langs.el Wed Jun 10 18:54:27 1998 +0000 @@ -399,10 +399,10 @@ (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 @@ ["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)))