]> git.eshelyaron.com Git - emacs.git/commitdiff
(mail-mode): Allow TAB after prefix in previous change.
authorRichard M. Stallman <rms@gnu.org>
Tue, 5 Aug 1997 17:25:06 +0000 (17:25 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 5 Aug 1997 17:25:06 +0000 (17:25 +0000)
lisp/mail/sendmail.el

index 4a7a2172d23bfdcf77b0d26dc36b247c36015cfb..0b9c14d24e97af1fcd3035ddd404f6db4d91c0ca 100644 (file)
@@ -348,7 +348,7 @@ C-c C-v  mail-sent-via (add a Sent-via field for each To or CC)."
   (setq fill-paragraph-function 'mail-mode-fill-paragraph)
   (make-local-variable 'adaptive-fill-regexp)
   (setq adaptive-fill-regexp
-       (concat "[ \t]*[a-z0-9A-Z]*>+ *\\|" adaptive-fill-regexp))
+       (concat "[ \t]*[a-z0-9A-Z]*>+[ \t]*\\|" adaptive-fill-regexp))
   (make-local-variable 'adaptive-fill-first-line-regexp)
   (setq adaptive-fill-first-line-regexp adaptive-fill-regexp)
   ;; `-- ' precedes the signature.  `-----' appears at the start of the
@@ -356,7 +356,7 @@ C-c C-v  mail-sent-via (add a Sent-via field for each To or CC)."
   ;; Lines containing just >= 3 dashes, perhaps after whitespace,
   ;; are also sometimes used and should be separators.
   (setq paragraph-start (concat (regexp-quote mail-header-separator)
-                               "$\\|[ \t]*[a-z0-9A-Z]*>+ *$\\|[ \t]*$\\|"
+                               "$\\|[ \t]*[a-z0-9A-Z]*>+[ \t]*$\\|[ \t]*$\\|"
                                page-delimiter))
   (setq paragraph-separate paragraph-start)
   (run-hooks 'text-mode-hook 'mail-mode-hook))