diff options
| author | Kim F. Storm | 2006-12-31 00:48:53 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2006-12-31 00:48:53 +0000 |
| commit | f57cdb50a7d11aec40238bfe8687eaaf403e1b17 (patch) | |
| tree | 9dd5392e3384d8629261745959ecfca3d1494d28 | |
| parent | 2c47a0f0fc4aa69715314552f74bf2b5b77953e6 (diff) | |
| download | emacs-f57cdb50a7d11aec40238bfe8687eaaf403e1b17.tar.gz emacs-f57cdb50a7d11aec40238bfe8687eaaf403e1b17.zip | |
*** empty log message ***
| -rw-r--r-- | etc/NEWS | 9 | ||||
| -rw-r--r-- | lisp/ChangeLog | 8 | ||||
| -rw-r--r-- | man/ChangeLog | 4 |
3 files changed, 20 insertions, 1 deletions
| @@ -5544,6 +5544,15 @@ of multiline constructs so that such constructs get properly recognized. | |||
| 5544 | ** Major mode mechanism changes: | 5544 | ** Major mode mechanism changes: |
| 5545 | 5545 | ||
| 5546 | +++ | 5546 | +++ |
| 5547 | *** If new variable `auto-mode-case-fold' is set to a non-nil value, | ||
| 5548 | Emacs will perform a second case-insensitive search through | ||
| 5549 | `auto-mode-alist' if the first case-sensitive search fails. | ||
| 5550 | This means that a file FILE.TXT is opened in text-mode, and a file PROG.PY | ||
| 5551 | is opened in python-mode. Note however, that independent of this | ||
| 5552 | setting, *.C files are usually recognized as C++ files. | ||
| 5553 | It also has no effect on systems with case-insensitive file names. | ||
| 5554 | |||
| 5555 | +++ | ||
| 5547 | *** New variable `magic-mode-alist' determines major mode for a file by | 5556 | *** New variable `magic-mode-alist' determines major mode for a file by |
| 5548 | looking at the file contents. It takes precedence over `auto-mode-alist'. | 5557 | looking at the file contents. It takes precedence over `auto-mode-alist'. |
| 5549 | 5558 | ||
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 273d7f52eb0..1c1070b040b 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2006-12-31 Kim F. Storm <storm@cua.dk> | ||
| 2 | |||
| 3 | * files.el (auto-mode-case-fold): New defcustom. | ||
| 4 | (set-auto-mode): If non-nil, perform second case-sensitive pass | ||
| 5 | through auto-mode-alist if first pass failed. | ||
| 6 | |||
| 1 | 2006-12-30 Richard Stallman <rms@gnu.org> | 7 | 2006-12-30 Richard Stallman <rms@gnu.org> |
| 2 | 8 | ||
| 3 | * emacs-lisp/easy-mmode.el (define-global-minor-mode): Doc fix. | 9 | * emacs-lisp/easy-mmode.el (define-global-minor-mode): Doc fix. |
| @@ -5,7 +11,7 @@ | |||
| 5 | 2006-12-30 Ken Manheimer <ken.manheimer@gmail.com> | 11 | 2006-12-30 Ken Manheimer <ken.manheimer@gmail.com> |
| 6 | 12 | ||
| 7 | * allout.el (allout-encrypt-string): Handle symmetric-key | 13 | * allout.el (allout-encrypt-string): Handle symmetric-key |
| 8 | passphrase caching but leave keypair caching to pgg. | 14 | passphrase caching but leave keypair caching to pgg. |
| 9 | 15 | ||
| 10 | 2006-12-30 Michael Albinus <michael.albinus@gmx.de> | 16 | 2006-12-30 Michael Albinus <michael.albinus@gmx.de> |
| 11 | 17 | ||
diff --git a/man/ChangeLog b/man/ChangeLog index 4a8640bd387..3e6fb6d8164 100644 --- a/man/ChangeLog +++ b/man/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2006-12-31 Kim F. Storm <storm@cua.dk> | ||
| 2 | |||
| 3 | * major.texi (Choosing Modes): Document auto-mode-case-fond. | ||
| 4 | |||
| 1 | 2006-12-30 Kim F. Storm <storm@cua.dk> | 5 | 2006-12-30 Kim F. Storm <storm@cua.dk> |
| 2 | 6 | ||
| 3 | * killing.texi (CUA Bindings): Fix typo. | 7 | * killing.texi (CUA Bindings): Fix typo. |