aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/emacs-lisp/lisp.el
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1993-05-16 15:28:52 +0000
committerRichard M. Stallman <[email protected]>1993-05-16 15:28:52 +0000
commit0ba911156b93dbb1db9aaf5c58de7bbf0816165b (patch)
treee4ba310900b7f96bcb0d57eb95ea8de98231e197 /lisp/emacs-lisp/lisp.el
parenta1929ae348ad9a4152f70d7b91c717913236cdff (diff)
(mark-sexp, mark-defun): Activate the mark.
Diffstat (limited to 'lisp/emacs-lisp/lisp.el')
-rw-r--r--lisp/emacs-lisp/lisp.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/lisp.el b/lisp/emacs-lisp/lisp.el
index 9cd00517cc..9c4cbd1d78 100644
--- a/lisp/emacs-lisp/lisp.el
+++ b/lisp/emacs-lisp/lisp.el
@@ -55,7 +55,8 @@ move to with the same argument."
(push-mark
(save-excursion
(forward-sexp arg)
- (point))))
+ (point))
+ nil t))
(defun forward-list (&optional arg)
"Move forward across one balanced group of parentheses.
@@ -188,7 +189,7 @@ The defun marked is the one that contains point or follows point."
(interactive)
(push-mark (point))
(end-of-defun)
- (push-mark (point))
+ (push-mark (point) nil t)
(beginning-of-defun)
(re-search-backward "^\n" (- (point) 1) t))