mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
(c-mode-menu): Use (mark t), not (mark), in enable-expressions.
This commit is contained in:
parent
e9367b9c2a
commit
268565b059
1 changed files with 4 additions and 4 deletions
|
|
@ -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)))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue