diff options
author | Romain Francoise <romain@orebokech.com> | 2005-11-29 10:53:30 +0000 |
---|---|---|
committer | Romain Francoise <romain@orebokech.com> | 2005-11-29 10:53:30 +0000 |
commit | 1c0484e2a2cdd089d16eeadfd057f08ccbb2308d (patch) | |
tree | 33243bcddbc49fbefafa00a364a5339494131159 /lisp | |
parent | 59f1b05814c0e8cad89a81747e6fa2085f434867 (diff) | |
download | emacs-1c0484e2a2cdd089d16eeadfd057f08ccbb2308d.tar.gz emacs-1c0484e2a2cdd089d16eeadfd057f08ccbb2308d.tar.bz2 emacs-1c0484e2a2cdd089d16eeadfd057f08ccbb2308d.zip |
(view-inhibit-help-message): New defcustom.
(view-mode-enter): Use it.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 9 | ||||
-rw-r--r-- | lisp/view.el | 13 |
2 files changed, 17 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index a108e294634..3511a86f9f3 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,8 +1,13 @@ +2005-11-29 Romain Francoise <romain@orebokech.com> + + * view.el (view-inhibit-help-message): New defcustom. + (view-mode-enter): Use it. + 2005-11-29 Michael Kifer <kifer@cs.stonybrook.edu> - + * ediff-wind (ediff-setup-control-frame, ediff-make-wide-display): preserve user position. - + 2005-11-28 Luc Teirlinck <teirllm@auburn.edu> * font-lock.el: Throw error if facemenu is not loaded to prevent diff --git a/lisp/view.el b/lisp/view.el index 0d6b941a0ca..4cbc0fe9e4c 100644 --- a/lisp/view.el +++ b/lisp/view.el @@ -93,6 +93,12 @@ considered for restoring." :type 'boolean :group 'view) +(defcustom view-inhibit-help-message nil + "*Non-nil inhibits the help message showed upon entering View mode." + :type 'boolean + :group 'view + :version "22.1") + ;;;###autoload (defvar view-mode nil "Non-nil if View mode is enabled. @@ -516,9 +522,10 @@ This function runs the normal hook `view-mode-hook'." (unless view-mode ; Do nothing if already in view mode. (view-mode-enable) (force-mode-line-update) - (message "%s" - (substitute-command-keys "\ -View mode: type \\[help-command] for help, \\[describe-mode] for commands, \\[View-quit] to quit.")))) + (unless view-inhibit-help-message + (message "%s" + (substitute-command-keys "\ +View mode: type \\[help-command] for help, \\[describe-mode] for commands, \\[View-quit] to quit."))))) (defun view-mode-exit (&optional return-to-alist exit-action all-win) "Exit View mode in various ways, depending on optional arguments. |