From: Gerd Moellmann Date: Tue, 20 Mar 2001 12:43:30 +0000 (+0000) Subject: (mail-mode): Activate case-folding in X-Git-Tag: emacs-pretest-21.0.101~246 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=117e4b0cb8bf5d6fa5a96f3f6800193f9e7059bd;p=emacs.git (mail-mode): Activate case-folding in font-lock-defaults. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c0e93604e22..91a11c3fcc4 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2001-03-20 Gerd Moellmann + + * mail/sendmail.el (mail-mode): Activate case-folding in + font-lock-defaults. + 2001-03-19 Stefan Monnier * bindings.el (mode-line-mode-menu): `glasses-mode' might be unbound. @@ -49,8 +54,8 @@ 2001-03-16 John Wiegley - * (timeclock-workday-remaining): Check whether `discrep' is - non-null before using it. + * calendar/timeclock.el (timeclock-workday-remaining): Check + whether `discrep' is non-null before using it. 2001-03-16 John Wiegley 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 (setq mode-name "Mail") (setq buffer-offer-save t) (make-local-variable 'font-lock-defaults) - (setq font-lock-defaults '(mail-font-lock-keywords t)) + (setq font-lock-defaults '(mail-font-lock-keywords t t)) (make-local-variable 'paragraph-separate) (make-local-variable 'paragraph-start) (make-local-variable 'normal-auto-fill-function)