# HG changeset patch
# User Richard M. Stallman <rms@gnu.org>
# Date 737566132 0
# Node ID 8ab0e280fbf09fc3b10eb2b6d4a56cdceecbc43b
# Parent  153a269b131561cc94e5191b477eb346f120924a
(mark-sexp, mark-defun): Activate the mark.

diff -r 153a269b1315 -r 8ab0e280fbf0 lisp/emacs-lisp/lisp.el
--- a/lisp/emacs-lisp/lisp.el	Sun May 16 13:42:36 1993 +0000
+++ b/lisp/emacs-lisp/lisp.el	Sun May 16 15:28:52 1993 +0000
@@ -55,7 +55,8 @@
   (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 @@
   (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))