# HG changeset patch # User Stefan Monnier # Date 1270000314 14400 # Node ID 59e2adcb1095d531175416b8a4352d21e7b39e79 # Parent fa375bb9de462dafdc988f16a15a17cbcb603494 * files.el (auto-mode-case-fold): Change default to t. diff -r fa375bb9de46 -r 59e2adcb1095 etc/NEWS --- a/etc/NEWS Wed Mar 31 00:10:57 2010 +0000 +++ b/etc/NEWS Tue Mar 30 21:51:54 2010 -0400 @@ -36,6 +36,8 @@ * 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 -r fa375bb9de46 -r 59e2adcb1095 lisp/ChangeLog --- a/lisp/ChangeLog Wed Mar 31 00:10:57 2010 +0000 +++ b/lisp/ChangeLog Tue Mar 30 21:51:54 2010 -0400 @@ -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 -r fa375bb9de46 -r 59e2adcb1095 lisp/files.el --- a/lisp/files.el Wed Mar 31 00:10:57 2010 +0000 +++ b/lisp/files.el Tue Mar 30 21:51:54 2010 -0400 @@ -2159,7 +2159,7 @@ (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.