diff options
| author | Richard M. Stallman | 1998-06-10 18:54:27 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1998-06-10 18:54:27 +0000 |
| commit | 268565b059dc8bc9e526a72f10c657f24542e4f1 (patch) | |
| tree | a90ffb449defd38770c8140970333d485374b87b | |
| parent | e9367b9c2a7ea98700e7a3967abfc7f18fcbbd8f (diff) | |
| download | emacs-268565b059dc8bc9e526a72f10c657f24542e4f1.tar.gz emacs-268565b059dc8bc9e526a72f10c657f24542e4f1.zip | |
(c-mode-menu): Use (mark t), not (mark), in enable-expressions.
| -rw-r--r-- | lisp/progmodes/cc-langs.el | 8 |
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." | |||
| 399 | 399 | ||
| 400 | (defun c-mode-menu (modestr) | 400 | (defun c-mode-menu (modestr) |
| 401 | (let ((m | 401 | (let ((m |
| 402 | '(["Comment Out Region" comment-region (mark)] | 402 | '(["Comment Out Region" comment-region (mark t)] |
| 403 | ["Uncomment Region" | 403 | ["Uncomment Region" |
| 404 | (comment-region (region-beginning) (region-end) '(4)) | 404 | (comment-region (region-beginning) (region-end) '(4)) |
| 405 | (mark)] | 405 | (mark t)] |
| 406 | ["Fill Comment Paragraph" c-fill-paragraph t] | 406 | ["Fill Comment Paragraph" c-fill-paragraph t] |
| 407 | "---" | 407 | "---" |
| 408 | ["Indent Expression" c-indent-exp | 408 | ["Indent Expression" c-indent-exp |
| @@ -414,8 +414,8 @@ Note that the style variables are always made local to the buffer." | |||
| 414 | ["Backward Statement" c-beginning-of-statement t] | 414 | ["Backward Statement" c-beginning-of-statement t] |
| 415 | ["Forward Statement" c-end-of-statement t] | 415 | ["Forward Statement" c-end-of-statement t] |
| 416 | "---" | 416 | "---" |
| 417 | ["Macro Expand Region" c-macro-expand (mark)] | 417 | ["Macro Expand Region" c-macro-expand (mark t)] |
| 418 | ["Backslashify" c-backslash-region (mark)] | 418 | ["Backslashify" c-backslash-region (mark t)] |
| 419 | ))) | 419 | ))) |
| 420 | (cons modestr m))) | 420 | (cons modestr m))) |
| 421 | 421 | ||