mail/mail-hist.el (mail-hist-text-too-long-p): doc fix.

This commit is contained in:
Karl Fogel 2001-01-03 16:29:17 +00:00
parent b33e041b7b
commit 43c4b57077
2 changed files with 5 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2001-01-03 Karl Fogel <kfogel@red-bean.com>
* mail/mail-hist.el (mail-hist-text-too-long-p): doc fix.
2001-01-02 Richard M. Stallman <rms@caffeine.ai.mit.edu>
* isearch.el (isearch-lazy-highlight-cleanup): Arg now says

View file

@ -189,8 +189,7 @@ If the value is nil, that means no limit on text size."
:group 'mail-hist)
(defun mail-hist-text-too-long-p (text)
"Return t if TEXT does not exceed mail-hist's size limit.
The variable `mail-hist-text-size-limit' defines this limit."
"Return non-nil if TEXT's length exceeds `mail-hist-text-size-limit'."
(if mail-hist-text-size-limit
(> (length text) mail-hist-text-size-limit)))