diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-09-09 07:09:20 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-09-09 07:09:20 +0000 |
commit | 19d7331338920e903e9ad23a9a3e8dfa9c3d48ff (patch) | |
tree | 5f2ef88996a6d6f2fdf888f4b3d29368ac89f2ec /lisp | |
parent | 18ed17e43b98621c116b217e5222b71c09894441 (diff) | |
download | emacs-19d7331338920e903e9ad23a9a3e8dfa9c3d48ff.tar.gz |
(view-end-message): Don't mention q if it really do anything.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/view.el | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/lisp/view.el b/lisp/view.el index 6feb5565231..6c5b7446e17 100644 --- a/lisp/view.el +++ b/lisp/view.el @@ -715,10 +715,12 @@ Also set the mark at the position where point was." (defun view-end-message () ;; Tell that we are at end of buffer. (goto-char (point-max)) - (message "End of buffer. Type %s to quit viewing." - (substitute-command-keys - (if view-scroll-auto-exit "\\[View-scroll-page-forward]" - "\\[View-quit]")))) + (if view-return-to-alist + (message "End of buffer. Type %s to quit viewing." + (substitute-command-keys + (if view-scroll-auto-exit "\\[View-scroll-page-forward]" + "\\[View-quit]"))) + (message "End of buffer"))) (defun View-scroll-page-forward (&optional lines) "Scroll \"page size\" or prefix LINES lines forward in View mode. |