aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2001-03-20 12:43:30 +0000
committerGerd Moellmann2001-03-20 12:43:30 +0000
commit117e4b0cb8bf5d6fa5a96f3f6800193f9e7059bd (patch)
tree9697b8f8b6ff911942fae8ab852cf00d26f5c812
parent467175fe305cd84484756eaf6f4f927b9f884de5 (diff)
downloademacs-117e4b0cb8bf5d6fa5a96f3f6800193f9e7059bd.tar.gz
emacs-117e4b0cb8bf5d6fa5a96f3f6800193f9e7059bd.zip
(mail-mode): Activate case-folding in
font-lock-defaults.
-rw-r--r--lisp/ChangeLog9
-rw-r--r--lisp/mail/sendmail.el2
2 files changed, 8 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index c0e93604e22..91a11c3fcc4 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12001-03-20 Gerd Moellmann <gerd@gnu.org>
2
3 * mail/sendmail.el (mail-mode): Activate case-folding in
4 font-lock-defaults.
5
12001-03-19 Stefan Monnier <monnier@cs.yale.edu> 62001-03-19 Stefan Monnier <monnier@cs.yale.edu>
2 7
3 * bindings.el (mode-line-mode-menu): `glasses-mode' might be unbound. 8 * bindings.el (mode-line-mode-menu): `glasses-mode' might be unbound.
@@ -49,8 +54,8 @@
49 54
502001-03-16 John Wiegley <johnw@gnu.org> 552001-03-16 John Wiegley <johnw@gnu.org>
51 56
52 * (timeclock-workday-remaining): Check whether `discrep' is 57 * calendar/timeclock.el (timeclock-workday-remaining): Check
53 non-null before using it. 58 whether `discrep' is non-null before using it.
54 59
552001-03-16 John Wiegley <johnw@gnu.org> 602001-03-16 John Wiegley <johnw@gnu.org>
56 61
diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el
index 16d06cba4e5..8b011159d0b 100644
--- a/lisp/mail/sendmail.el
+++ b/lisp/mail/sendmail.el
@@ -476,7 +476,7 @@ Turning on Mail mode runs the normal hooks `text-mode-hook' and
476 (setq mode-name "Mail") 476 (setq mode-name "Mail")
477 (setq buffer-offer-save t) 477 (setq buffer-offer-save t)
478 (make-local-variable 'font-lock-defaults) 478 (make-local-variable 'font-lock-defaults)
479 (setq font-lock-defaults '(mail-font-lock-keywords t)) 479 (setq font-lock-defaults '(mail-font-lock-keywords t t))
480 (make-local-variable 'paragraph-separate) 480 (make-local-variable 'paragraph-separate)
481 (make-local-variable 'paragraph-start) 481 (make-local-variable 'paragraph-start)
482 (make-local-variable 'normal-auto-fill-function) 482 (make-local-variable 'normal-auto-fill-function)