# HG changeset patch # User Karl Fogel # Date 978539357 0 # Node ID 5664773f9e07caae75dadb5da86de5c865301ef7 # Parent 87ced45d14e90d392c778ead1335e64645e97aa1 mail/mail-hist.el (mail-hist-text-too-long-p): doc fix. diff -r 87ced45d14e9 -r 5664773f9e07 lisp/ChangeLog --- 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 + + * mail/mail-hist.el (mail-hist-text-too-long-p): doc fix. + 2001-01-02 Richard M. Stallman * isearch.el (isearch-lazy-highlight-cleanup): Arg now says diff -r 87ced45d14e9 -r 5664773f9e07 lisp/mail/mail-hist.el --- 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)))