diff options
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/mail/sendmail.el | 5 |
2 files changed, 8 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b3ed84f1c9e..30d58ad4da6 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2001-08-22 Stefan Monnier <monnier@cs.yale.edu> | ||
| 2 | |||
| 3 | * mail/sendmail.el (mail-mode): Use adaptive-fill-regexp. | ||
| 4 | |||
| 5 | * textmodes/fill.el (adaptive-fill-regexp): Admit tabs as well. | ||
| 6 | |||
| 1 | 2001-08-22 Eli Zaretskii <eliz@is.elta.co.il> | 7 | 2001-08-22 Eli Zaretskii <eliz@is.elta.co.il> |
| 2 | 8 | ||
| 3 | * simple.el (line-number-mode): Mention the variable | 9 | * simple.el (line-number-mode): Mention the variable |
diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el index 1ff0453e62e..5c572587dcf 100644 --- a/lisp/mail/sendmail.el +++ b/lisp/mail/sendmail.el | |||
| @@ -497,9 +497,8 @@ Turning on Mail mode runs the normal hooks `text-mode-hook' and | |||
| 497 | (set (make-local-variable 'comment-start) mail-yank-prefix) | 497 | (set (make-local-variable 'comment-start) mail-yank-prefix) |
| 498 | (make-local-variable 'adaptive-fill-regexp) | 498 | (make-local-variable 'adaptive-fill-regexp) |
| 499 | (setq adaptive-fill-regexp | 499 | (setq adaptive-fill-regexp |
| 500 | (concat "[ \t]*\\([-|#;>*]+ *\\|(?[0-9]+[.)] *\\)+" | 500 | (concat adaptive-fill-regexp |
| 501 | "\\|[ \t]*[-[:alnum:]]*>+[ \t]*" | 501 | "\\|[ \t]*[-[:alnum:]]*>+[ \t]*")) |
| 502 | "\\|[ \t]*")) | ||
| 503 | (make-local-variable 'adaptive-fill-first-line-regexp) | 502 | (make-local-variable 'adaptive-fill-first-line-regexp) |
| 504 | (setq adaptive-fill-first-line-regexp | 503 | (setq adaptive-fill-first-line-regexp |
| 505 | (concat adaptive-fill-first-line-regexp | 504 | (concat adaptive-fill-first-line-regexp |