]> git.eshelyaron.com Git - emacs.git/commitdiff
mail/mail-hist.el (mail-hist-text-too-long-p): doc fix.
authorKarl Fogel <kfogel@red-bean.com>
Wed, 3 Jan 2001 16:29:17 +0000 (16:29 +0000)
committerKarl Fogel <kfogel@red-bean.com>
Wed, 3 Jan 2001 16:29:17 +0000 (16:29 +0000)
lisp/ChangeLog
lisp/mail/mail-hist.el

index cacb9906e91d393933c0bcfe6f5e1ae624bf6e56..bc8b384fba54fc7eab85c0fd78970efb8199ddcb 100644 (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
index e37932ecb1a6d2be3d90410832c4c18f59cf9784..3cecbba0a552b7d3da1a2cd2842ee69e877f2e3d 100644 (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)))