changeset 19171:2746f25df333

(mail-mode): Allow TAB after prefix in previous change.
author Richard M. Stallman <rms@gnu.org>
date Tue, 05 Aug 1997 17:25:06 +0000
parents ecc4375537e3
children f3580f4e3587
files lisp/mail/sendmail.el
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/mail/sendmail.el	Tue Aug 05 17:16:00 1997 +0000
+++ b/lisp/mail/sendmail.el	Tue Aug 05 17:25:06 1997 +0000
@@ -348,7 +348,7 @@
   (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 @@
   ;; 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))