]> git.eshelyaron.com Git - emacs.git/commitdiff
(mail-abbrev-in-expansion-header-p): Use mail-header-end.
authorRichard M. Stallman <rms@gnu.org>
Thu, 30 Apr 1998 06:26:19 +0000 (06:26 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 30 Apr 1998 06:26:19 +0000 (06:26 +0000)
lisp/mail/mailabbrev.el

index 14ca13b8b17b0f776bf8802f3071b50c7abdd383..8a3b67212236b88d119678d56752eb2d584e8246 100644 (file)
@@ -447,13 +447,8 @@ of a mail alias.")
        ;; are we at the front of an appropriate header line?
        (looking-at mail-abbrev-mode-regexp))
      ;;
-     ;; ...and we are before the mail-header-separator
-     (< (point)
-       (save-excursion
-         (goto-char (point-min))
-         (search-forward (concat "\n" mail-header-separator "\n")
-                         nil 0)
-         (point))))))
+     ;; ...and are we in the headers?
+     (< (point) (mail-header-end)))))
 
 (defvar mail-mode-abbrev-table) ; quiet the compiler