From 19e526187acf0abc941bbc916885c2ca5b01c9f3 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Sat, 27 Oct 2001 22:14:43 +0000 Subject: [PATCH] (mail-mode): Fix ordering in adaptive-fill-regexp. --- lisp/ChangeLog | 11 +++++++---- lisp/mail/sendmail.el | 4 ++-- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 52008eb41e2..f6dc581ccfc 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2001-10-27 Stefan Monnier + + * mail/sendmail.el (mail-mode): Fix ordering in adaptive-fill-regexp. + 2001-10-27 Gerd Moellmann * net/ange-ftp.el (ange-ftp-send-cmd): Call fix-name-func for @@ -26,11 +30,10 @@ (ps-mode-print-buffer, ps-mode-print-region): Use `funcall' instead of `eval'. (ps-mode-print-region): Use `with-temp-buffer'. - (ps-run-start): Use of `mapconcat'. Use `apply' instead of - `eval'. + (ps-run-start): Use of `mapconcat'. Use `apply' instead of `eval'. (numerous places): Add back-tick and tick around names in docstrings, fix punctuation in docstrings, remove trailing spaces. - + 2001-10-25 Gerd Moellmann * startup.el (normal-top-level): Check for frame-initial-frame @@ -61,7 +64,7 @@ 2001-10-23 Gerd Moellmann - * info.el (Info-fontify-node): Bind doun-mouse-{1,2} instead + * info.el (Info-fontify-node): Bind down-mouse-{1,2} instead of mouse-{1,2} since dragging is on the down event. * play/doctor.el (make-doctor-variables): Remove a '($ please)'. diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el index 98f6639230b..c7a2edc4ec9 100644 --- a/lisp/mail/sendmail.el +++ b/lisp/mail/sendmail.el @@ -494,8 +494,8 @@ 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 adaptive-fill-regexp - "\\|[ \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 adaptive-fill-first-line-regexp -- 2.39.2