changeset 35027:5664773f9e07

mail/mail-hist.el (mail-hist-text-too-long-p): doc fix.
author Karl Fogel <kfogel@red-bean.com>
date Wed, 03 Jan 2001 16:29:17 +0000
parents 87ced45d14e9
children d95d24e2e8a3
files lisp/ChangeLog lisp/mail/mail-hist.el
diffstat 2 files changed, 5 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Wed Jan 03 15:15:27 2001 +0000
+++ b/lisp/ChangeLog	Wed Jan 03 16:29:17 2001 +0000
@@ -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
--- a/lisp/mail/mail-hist.el	Wed Jan 03 15:15:27 2001 +0000
+++ b/lisp/mail/mail-hist.el	Wed Jan 03 16:29:17 2001 +0000
@@ -189,8 +189,7 @@
   :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)))