aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1993-05-16 15:41:14 +0000
committerRichard M. Stallman1993-05-16 15:41:14 +0000
commit6be72a0b35686edb52480f8b67136fc6a4857e45 (patch)
treefe56d93a912b083ccc2a76f9480ac54b68ead836
parentfd0f40564ff56cfc2c09571b83c8f64cfba82f81 (diff)
downloademacs-6be72a0b35686edb52480f8b67136fc6a4857e45.tar.gz
emacs-6be72a0b35686edb52480f8b67136fc6a4857e45.zip
(mark-page): Activate the mark.
-rw-r--r--lisp/textmodes/page.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/textmodes/page.el b/lisp/textmodes/page.el
index fca4d9f6608..32e505eaae6 100644
--- a/lisp/textmodes/page.el
+++ b/lisp/textmodes/page.el
@@ -67,7 +67,7 @@ thus marking a page other than the one point was originally in."
67 (if (< arg 0) 67 (if (< arg 0)
68 (forward-page (1- arg)))) 68 (forward-page (1- arg))))
69 (forward-page) 69 (forward-page)
70 (push-mark nil t) 70 (push-mark nil t t)
71 (forward-page -1)) 71 (forward-page -1))
72 72
73(defun narrow-to-page (&optional arg) 73(defun narrow-to-page (&optional arg)