Mercurial > emacs
changeset 22423:76aa8f3934bf
(c-mode-menu): Use (mark t), not (mark), in enable-expressions.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 10 Jun 1998 18:54:27 +0000 |
parents | 1eba71735142 |
children | d8368e1df721 |
files | lisp/progmodes/cc-langs.el |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- 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)))