diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2021-07-23 20:18:21 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2021-07-23 20:18:21 +0200 |
commit | 2a231378fa5b10049b52c9197f037b522e0d22a1 (patch) | |
tree | 06580ab22175ed68d38fbf7119e8158023309a71 | |
parent | 1f24519735d5413916962ff659d78b7333904e11 (diff) | |
download | emacs-2a231378fa5b10049b52c9197f037b522e0d22a1.tar.gz emacs-2a231378fa5b10049b52c9197f037b522e0d22a1.tar.bz2 emacs-2a231378fa5b10049b52c9197f037b522e0d22a1.zip |
Fix typo in set-auto-mode--apply-alist
* lisp/files.el (set-auto-mode--apply-alist): Fix typo in
ad5faa424a5 (bug#49712).
-rw-r--r-- | lisp/files.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/files.el b/lisp/files.el index dc803d3a4cf..c0effd1ad6b 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -3221,7 +3221,7 @@ call is via directory-locals and extra checks should be done." (if case-insensitive-p ;; Filesystem is case-insensitive. (let ((case-fold-search t)) - (assoc-default alist 'string-match)) + (assoc-default name alist 'string-match)) ;; Filesystem is case-sensitive. (or ;; First match case-sensitively. |