aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2003-05-06 17:36:16 +0000
committerJuanma Barranquero2003-05-06 17:36:16 +0000
commit66d0d12c98cd2a5aac5fe5ecacf8de4e6b94c064 (patch)
tree61171fab4dbd1340f12938a21a3549e3395abb40
parent08815e25e532cb7970bf9951e2f36ee4e9fe7610 (diff)
downloademacs-66d0d12c98cd2a5aac5fe5ecacf8de4e6b94c064.tar.gz
emacs-66d0d12c98cd2a5aac5fe5ecacf8de4e6b94c064.zip
(eldoc-echo-area-use-multiline-p): Don't quote nil and t in docstrings.
-rw-r--r--lisp/emacs-lisp/eldoc.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/emacs-lisp/eldoc.el b/lisp/emacs-lisp/eldoc.el
index dda22a32139..cbcd5b2a555 100644
--- a/lisp/emacs-lisp/eldoc.el
+++ b/lisp/emacs-lisp/eldoc.el
@@ -7,7 +7,7 @@
7;; Keywords: extensions 7;; Keywords: extensions
8;; Created: 1995-10-06 8;; Created: 1995-10-06
9 9
10;; $Id: eldoc.el,v 1.23 2003/01/03 11:53:46 jpw Exp $ 10;; $Id: eldoc.el,v 1.24 2003/02/11 00:11:55 monnier Exp $
11 11
12;; This file is part of GNU Emacs. 12;; This file is part of GNU Emacs.
13 13
@@ -81,11 +81,11 @@ returns another string is acceptable."
81 81
82(defcustom eldoc-echo-area-use-multiline-p 'truncate-sym-name-if-fit 82(defcustom eldoc-echo-area-use-multiline-p 'truncate-sym-name-if-fit
83 "*Allow long eldoc messages to resize echo area display. 83 "*Allow long eldoc messages to resize echo area display.
84If value is `t', never attempt to truncate messages; complete symbol name 84If value is t, never attempt to truncate messages; complete symbol name
85and function arglist or 1-line variable documentation will be displayed 85and function arglist or 1-line variable documentation will be displayed
86even if echo area must be resized to fit. 86even if echo area must be resized to fit.
87 87
88If value is any non-nil value other than `t', symbol name may be truncated 88If value is any non-nil value other than t, symbol name may be truncated
89if it will enable the function arglist or documentation string to fit on a 89if it will enable the function arglist or documentation string to fit on a
90single line without resizing window. Otherwise, behavior is just like 90single line without resizing window. Otherwise, behavior is just like
91former case. 91former case.
@@ -180,7 +180,7 @@ With prefix ARG, turn ElDoc mode on if and only if ARG is positive."
180 180
181(defun eldoc-message (&rest args) 181(defun eldoc-message (&rest args)
182 (let ((omessage eldoc-last-message)) 182 (let ((omessage eldoc-last-message))
183 (setq eldoc-last-message 183 (setq eldoc-last-message
184 (cond ((eq (car args) eldoc-last-message) eldoc-last-message) 184 (cond ((eq (car args) eldoc-last-message) eldoc-last-message)
185 ((null (car args)) nil) 185 ((null (car args)) nil)
186 ;; If only one arg, no formatting to do, so put it in 186 ;; If only one arg, no formatting to do, so put it in