aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorAndreas Schwab1999-01-04 11:04:27 +0000
committerAndreas Schwab1999-01-04 11:04:27 +0000
commit5d9b78b76137c356b75f591e5fbb41c33ba958f1 (patch)
tree401c89f9b38ffc095b5106044ea3172692febf3c /lisp
parenta51568bdddb1839d937f236014a83f26004c8072 (diff)
downloademacs-5d9b78b76137c356b75f591e5fbb41c33ba958f1.tar.gz
emacs-5d9b78b76137c356b75f591e5fbb41c33ba958f1.zip
(View-revert-buffer-scroll-page-forward): Bind
view-scroll-auto-exit instead of obsolete view-mode-auto-exit.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/view.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/view.el b/lisp/view.el
index ca9ee827f5a..593d29b6a24 100644
--- a/lisp/view.el
+++ b/lisp/view.el
@@ -829,7 +829,7 @@ If you don't specify a prefix argument, it uses the number of lines set by
829\\[View-scroll-page-backward-set-page-size]. 829\\[View-scroll-page-backward-set-page-size].
830If LINES is more than a window-full, only the last window-full is shown." 830If LINES is more than a window-full, only the last window-full is shown."
831 (interactive "P") 831 (interactive "P")
832 (let ((view-mode-auto-exit nil) 832 (let ((view-scroll-auto-exit nil)
833 (view-try-extend-at-buffer-end t)) 833 (view-try-extend-at-buffer-end t))
834 (view-scroll-lines lines nil view-page-size nil))) 834 (view-scroll-lines lines nil view-page-size nil)))
835 835