]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix last change
authorEli Zaretskii <eliz@gnu.org>
Sat, 20 Jul 2019 09:34:02 +0000 (12:34 +0300)
committerEli Zaretskii <eliz@gnu.org>
Sat, 20 Jul 2019 09:34:02 +0000 (12:34 +0300)
* etc/NEWS: Call out the change in matching REGEXP.

* lisp/files.el (magic-mode-alist)
(magic-fallback-mode-alist): Doc fix.  (Bug#36401)

etc/NEWS
lisp/files.el

index 5cbe60c6d8ad4e0e76d3c86a8da71c39960f7223..9b7cfd7bb7e8f2fffb4ad4769c290229f529347e 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1747,6 +1747,10 @@ immediately.  Type 'M-x so-long-commentary' for full documentation.
 \f
 * Incompatible Lisp Changes in Emacs 27.1
 
+---
+** The REGEXP in 'magic-mode-alist' is now matched case-sensitively.
+Likewise for 'magic-fallback-mode-alist'.
+
 +++
 ** add-hook does not always add to the front or the end any more.
 The replacement of `append` with `depth` implies that the function is not
index 34fdc3031a994a5ccd22fea61258e3d0a5c11755..89e9a693d110a02e4a2950ba506deeea0a086650 100644 (file)
@@ -2964,7 +2964,7 @@ associated with that interpreter in `interpreter-mode-alist'.")
   "Alist of buffer beginnings vs. corresponding major mode functions.
 Each element looks like (REGEXP . FUNCTION) or (MATCH-FUNCTION . FUNCTION).
 After visiting a file, if REGEXP matches the text at the beginning of the
-buffer (respecting case), or calling MATCH-FUNCTION returns non-nil,
+buffer (case-sensitively), or calling MATCH-FUNCTION returns non-nil,
 `normal-mode' will call FUNCTION rather than allowing `auto-mode-alist' to
 decide the buffer's major mode.
 
@@ -2998,7 +2998,7 @@ If FUNCTION is nil, then it is not called.  (That is a way of saying
   "Like `magic-mode-alist' but has lower priority than `auto-mode-alist'.
 Each element looks like (REGEXP . FUNCTION) or (MATCH-FUNCTION . FUNCTION).
 After visiting a file, if REGEXP matches the text at the beginning of the
-buffer (respecting case), or calling MATCH-FUNCTION returns non-nil,
+buffer (case-sensitively), or calling MATCH-FUNCTION returns non-nil,
 `normal-mode' will call FUNCTION, provided that `magic-mode-alist' and
 `auto-mode-alist' have not specified a mode for this file.