aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1993-05-16 17:43:36 +0000
committerRichard M. Stallman1993-05-16 17:43:36 +0000
commit069b6ce323203674127efdafe927087d9ba0aae7 (patch)
tree89d99b4f2953a503092b958f755241defbe50aca
parenta524dc5bcd548f94ce5c618746f94d6ecee5ae50 (diff)
downloademacs-069b6ce323203674127efdafe927087d9ba0aae7.tar.gz
emacs-069b6ce323203674127efdafe927087d9ba0aae7.zip
(mark-c-function): Activate the mark.
-rw-r--r--lisp/progmodes/c-mode.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/c-mode.el b/lisp/progmodes/c-mode.el
index a9f7e0cedef..a9aab352c7b 100644
--- a/lisp/progmodes/c-mode.el
+++ b/lisp/progmodes/c-mode.el
@@ -947,7 +947,7 @@ If within a string or comment, move by sentences instead of statements."
947 (interactive) 947 (interactive)
948 (push-mark (point)) 948 (push-mark (point))
949 (end-of-defun) 949 (end-of-defun)
950 (push-mark (point)) 950 (push-mark (point) nil t)
951 (beginning-of-defun) 951 (beginning-of-defun)
952 (backward-paragraph)) 952 (backward-paragraph))
953 953