From: Stefan Monnier Date: Wed, 31 Mar 2010 01:51:54 +0000 (-0400) Subject: * files.el (auto-mode-case-fold): Change default to t. X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~438^2~623 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2372f27819d40841e544877642b3bf599f19e58f;p=emacs.git * files.el (auto-mode-case-fold): Change default to t. --- diff --git a/etc/NEWS b/etc/NEWS index 330f05ac53f..febdcfdc5f4 100644 --- a/etc/NEWS +++ b/etc/NEWS @@ -36,6 +36,8 @@ lib-src/Makefile by hand in order to use the associated features. * Changes in Emacs 24.1 +** auto-mode-case-fold is now enabled by default. + +++ ** Emacs now supports display and editing of bidirectional text. Warning: This is still very much experimental! The existing support diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 426db447d51..01628fcea02 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2010-03-31 Stefan Monnier + + * files.el (auto-mode-case-fold): Change default to t. + 2010-03-30 Juri Linkov * dired-x.el (dired-omit-mode): Doc fix. diff --git a/lisp/files.el b/lisp/files.el index 3b3bbe19bbb..b341fe71076 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -2159,7 +2159,7 @@ in that case, this function acts as if `enable-local-variables' were t." (if (fboundp 'ucs-set-table-for-input) ; don't lose when building (ucs-set-table-for-input))) -(defcustom auto-mode-case-fold nil +(defcustom auto-mode-case-fold t "Non-nil means to try second pass through `auto-mode-alist'. This means that if the first case-sensitive search through the alist fails to find a matching major mode, a second case-insensitive search is made.