From 567a1c29d9932087148051dd7f2f12c1c5645d8d Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Wed, 23 Jan 2002 00:44:27 +0000 Subject: [PATCH] (mail-mode): ">" is not a supercite-style prefix and is already matched by adaptive-fill-regexp. --- lisp/mail/sendmail.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el index 3e0f17e96b5..8497af5f7ef 100644 --- a/lisp/mail/sendmail.el +++ b/lisp/mail/sendmail.el @@ -487,11 +487,11 @@ Turning on Mail mode runs the normal hooks `text-mode-hook' and (set (make-local-variable 'comment-start) mail-yank-prefix) (make-local-variable 'adaptive-fill-regexp) (setq adaptive-fill-regexp - (concat "[ \t]*[-[:alnum:]]*>+[ \t]*\\|" + (concat "[ \t]*[-[:alnum:]]+>+[ \t]*\\|" adaptive-fill-regexp)) (make-local-variable 'adaptive-fill-first-line-regexp) (setq adaptive-fill-first-line-regexp - (concat "[ \t]*[-[:alnum:]]*>+[ \t]*\\|" + (concat "[ \t]*[-[:alnum:]]+>+[ \t]*\\|" adaptive-fill-first-line-regexp)) ;; `-- ' precedes the signature. `-----' appears at the start of the ;; lines that delimit forwarded messages. -- 2.39.2