diff options
author | Artur Malabarba <bruce.connor.am@gmail.com> | 2016-01-16 08:50:46 +0000 |
---|---|---|
committer | Artur Malabarba <bruce.connor.am@gmail.com> | 2016-01-16 08:53:33 +0000 |
commit | f0b82b34536e6bafbecbd642eee0cb0f534f8647 (patch) | |
tree | c717d188a43e9166507111451700bff13194a551 /lisp/dos-fns.el | |
parent | 86e45139698fe773ffb4efbe59387f90201b80c8 (diff) | |
download | emacs-f0b82b34536e6bafbecbd642eee0cb0f534f8647.tar.gz |
* lisp/files.el (dir-locals--all-files): Use completion instead of wildcards
(dir-locals-file)
* lisp/files-x.el (modify-dir-local-variable)
* lisp/dos-fns.el (dosified-file-name)
* lisp/help-fns.el (describe-variable): Change accordingly.
Diffstat (limited to 'lisp/dos-fns.el')
-rw-r--r-- | lisp/dos-fns.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/dos-fns.el b/lisp/dos-fns.el index 7defb388b74..0ce2b23527d 100644 --- a/lisp/dos-fns.el +++ b/lisp/dos-fns.el @@ -201,8 +201,8 @@ that are used in Emacs Lisp sources; any other file name will be returned unaltered." (cond ;; See files.el:dir-locals-file. - ((string= file-name ".dir-locals.el") - "_dir-locals.el") + ((string= file-name ".dir-locals") + "_dir-locals") (t file-name))) |