aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2007-05-16 13:24:43 +0000
committerJuanma Barranquero2007-05-16 13:24:43 +0000
commit26e150ef74356497a9b0e1d704c384e2bbda1bd3 (patch)
tree5d019aedcd27ac3ff9e4dfa5587c7305e4cf5d35
parent3f79ccad402a50387169d871d618d5eeb888c012 (diff)
downloademacs-26e150ef74356497a9b0e1d704c384e2bbda1bd3.tar.gz
emacs-26e150ef74356497a9b0e1d704c384e2bbda1bd3.zip
(view-inhibit-help-message): Fix typo in docstring.
(view-scroll-auto-exit, view-try-extend-at-buffer-end): Doc fixes.
-rw-r--r--lisp/ChangeLog19
-rw-r--r--lisp/view.el6
2 files changed, 22 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 24d7436c904..5e8497e1246 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,22 @@
12007-05-16 Juanma Barranquero <lekktu@gmail.com>
2
3 * buff-menu.el (Buffer-menu-sort-column):
4 * dabbrev.el (dabbrev-upcase-means-case-search):
5 * dired.el (dired-recursive-deletes, dired-recursive-copies):
6 * info.el (Info-current-subfile):
7 * ls-lisp.el (ls-lisp-verbosity):
8 * msb.el (msb-menu-cond):
9 * pcvs.el (cvs-dired-use-hook):
10 * simple.el (set-mark-command-repeat-pop):
11 * time.el (display-time-24hr-format, display-time-mail-file):
12 Doc fixes.
13
14 * tutorial.el (get-lang-string, tutorial--find-changed-keys):
15 * printing.el (pr-ps-fast-fire): Fix typos in docstrings.
16
17 * view.el (view-inhibit-help-message): Fix typo in docstring.
18 (view-scroll-auto-exit, view-try-extend-at-buffer-end): Doc fixes.
19
12007-05-16 Martin Rudalics <rudalics@gmx.at> 202007-05-16 Martin Rudalics <rudalics@gmx.at>
2 21
3 * textmodes/ispell.el (ispell-start-process): Defend against bad 22 * textmodes/ispell.el (ispell-start-process): Defend against bad
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 @@
64;; is now controlled by the presence of a value in `view-return-to-alist'. 64;; is now controlled by the presence of a value in `view-return-to-alist'.
65(defcustom view-scroll-auto-exit nil 65(defcustom view-scroll-auto-exit nil
66 "*Non-nil means scrolling past the end of buffer exits View mode. 66 "*Non-nil means scrolling past the end of buffer exits View mode.
67nil means attempting to scroll past the end of the buffer, 67A value of nil means attempting to scroll past the end of the buffer,
68only rings the bell and gives a message on how to leave." 68only rings the bell and gives a message on how to leave."
69 :type 'boolean 69 :type 'boolean
70 :group 'view) 70 :group 'view)
71 71
72(defcustom view-try-extend-at-buffer-end nil 72(defcustom view-try-extend-at-buffer-end nil
73 "*Non-nil means try load more of file when reaching end of buffer. 73 "*Non-nil means try to load more of file when reaching end of buffer.
74This variable is mainly intended to be temporarily set to non-nil by 74This variable is mainly intended to be temporarily set to non-nil by
75the F command in view-mode, but you can set it to t if you want the action 75the F command in view-mode, but you can set it to t if you want the action
76for all scroll commands in view mode." 76for all scroll commands in view mode."
@@ -94,7 +94,7 @@ considered for restoring."
94 :group 'view) 94 :group 'view)
95 95
96(defcustom view-inhibit-help-message nil 96(defcustom view-inhibit-help-message nil
97 "*Non-nil inhibits the help message showed upon entering View mode." 97 "*Non-nil inhibits the help message shown upon entering View mode."
98 :type 'boolean 98 :type 'boolean
99 :group 'view 99 :group 'view
100 :version "22.1") 100 :version "22.1")