]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix previous change.
authorRichard M. Stallman <rms@gnu.org>
Tue, 17 Jun 1997 02:29:54 +0000 (02:29 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 17 Jun 1997 02:29:54 +0000 (02:29 +0000)
lisp/mail/sendmail.el

index 272ea55796a209cf8d6bb0dad8d5dea79f01f18c..adb34a9c4d122091050892bed543262d155e2588 100644 (file)
@@ -357,7 +357,9 @@ If within the headers, this makes the new lines into continuation lines."
   (if (< (point)
         (save-excursion
           (goto-char (point-min))
-          (if (search-forward (concat "^" mail-header-separator "$") nil t)
+          (if (re-search-forward
+               (concat "^" (regexp-quote mail-header-separator) "$")
+               nil t)
               (point)
             0)))
       (let ((old-line-start (save-excursion (beginning-of-line) (point))))
@@ -375,7 +377,9 @@ If within the headers, this makes the new lines into continuation lines."
   (if (< (point)
         (save-excursion
           (goto-char (point-min))
-          (if (search-forward (concat "^" mail-header-separator "$") nil t)
+          (if (re-search-forward
+               (concat "^" (regexp-quote mail-header-separator) "$")
+               nil t)
               (point)
             0)))
       (let (beg end fieldname)