diff options
author | Richard M. Stallman <rms@gnu.org> | 1993-05-16 15:41:14 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1993-05-16 15:41:14 +0000 |
commit | 6d77a22b3002c904cc612c965973d3e246507926 (patch) | |
tree | 548e6ea836edf7f46caa7af34a44f5c4e65534c4 /lisp/textmodes/page.el | |
parent | 08be5672231c10e697f85d3099f7fe75b9ea57f2 (diff) | |
download | emacs-6d77a22b3002c904cc612c965973d3e246507926.tar.gz |
(mark-page): Activate the mark.
Diffstat (limited to 'lisp/textmodes/page.el')
-rw-r--r-- | lisp/textmodes/page.el | 2 |
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." (if (< arg 0) (forward-page (1- arg)))) (forward-page) - (push-mark nil t) + (push-mark nil t t) (forward-page -1)) (defun narrow-to-page (&optional arg) |