summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2007-05-16 11:31:39 +0000
committerJuanma Barranquero <lekktu@gmail.com>2007-05-16 11:31:39 +0000
commit39d9e44fa78b0db04b0771aa02302c1d7eeefe67 (patch)
treef48cb4ab82d3a32953ea5f908b95a584af20feb9
parent7d326782f204c46f5befd5fb1ea6b4dbc7b628e0 (diff)
downloademacs-39d9e44fa78b0db04b0771aa02302c1d7eeefe67.tar.gz
(view-inhibit-help-message): Fix typo in docstring.
(view-scroll-auto-exit, view-try-extend-at-buffer-end): Doc fixes.
-rw-r--r--lisp/view.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/view.el b/lisp/view.el
index 8dd9e032868..57d264d2b8e 100644
--- a/lisp/view.el
+++ b/lisp/view.el
@@ -64,13 +64,13 @@
;; is now controlled by the presence of a value in `view-return-to-alist'.
(defcustom view-scroll-auto-exit nil
"*Non-nil means scrolling past the end of buffer exits View mode.
-nil means attempting to scroll past the end of the buffer,
+A value of nil means attempting to scroll past the end of the buffer,
only rings the bell and gives a message on how to leave."
:type 'boolean
:group 'view)
(defcustom view-try-extend-at-buffer-end nil
- "*Non-nil means try load more of file when reaching end of buffer.
+ "*Non-nil means try to load more of file when reaching end of buffer.
This variable is mainly intended to be temporarily set to non-nil by
the F command in view-mode, but you can set it to t if you want the action
for all scroll commands in view mode."
@@ -94,7 +94,7 @@ considered for restoring."
:group 'view)
(defcustom view-inhibit-help-message nil
- "*Non-nil inhibits the help message showed upon entering View mode."
+ "*Non-nil inhibits the help message shown upon entering View mode."
:type 'boolean
:group 'view
:version "22.1")