diff options
Diffstat (limited to 'lisp/mail')
-rw-r--r-- | lisp/mail/mail-hist.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mail/mail-hist.el b/lisp/mail/mail-hist.el index 8fc4be741c4..5f324ea61a1 100644 --- a/lisp/mail/mail-hist.el +++ b/lisp/mail/mail-hist.el @@ -105,7 +105,7 @@ Oldest elements are dumped first." "Get name of mail header point is currently in, without the colon. Returns nil if not in a header, implying that point is in the body of the message." - (if (> (point) (mail-text-start)) + (if (>= (point) (mail-text-start)) nil ; then we are in the body of the message (save-excursion (let* ((body-start |