summaryrefslogtreecommitdiff
path: root/lisp/files-x.el
diff options
context:
space:
mode:
authorArtur Malabarba <bruce.connor.am@gmail.com>2015-11-07 13:54:56 +0000
committerArtur Malabarba <bruce.connor.am@gmail.com>2015-11-07 13:55:16 +0000
commit3d4fdb9f59731113f467b3705c8346b1ee8d2d81 (patch)
tree0a4b971094880b5ea3f48fb275537851b9f9edf6 /lisp/files-x.el
parent8af7598d9851c067176ced829d8a5902f3afcbc1 (diff)
downloademacs-scratch/dir-local-wildcard.tar.gz
* lisp/files.el (dir-locals-file): Allow wildcardsscratch/dir-local-wildcard
(dir-locals-find-file, dir-locals-collect-variables) (dir-locals-read-from-file): Update accordingly. (hack-dir-local-variables): Rename a local variable.
Diffstat (limited to 'lisp/files-x.el')
-rw-r--r--lisp/files-x.el27
1 files changed, 16 insertions, 11 deletions
diff --git a/lisp/files-x.el b/lisp/files-x.el
index a130ffcf928..dcd495db15a 100644
--- a/lisp/files-x.el
+++ b/lisp/files-x.el
@@ -429,18 +429,23 @@ from the MODE alist ignoring the input argument VALUE."
(catch 'exit
(unless enable-local-variables
(throw 'exit (message "Directory-local variables are disabled")))
- (let ((variables-file (or (and (buffer-file-name)
- (not (file-remote-p (buffer-file-name)))
- (dir-locals-find-file (buffer-file-name)))
- dir-locals-file))
+ (let ((variables-file (and (buffer-file-name)
+ (not (file-remote-p (buffer-file-name)))
+ (dir-locals-find-file (buffer-file-name))))
variables)
- (if (consp variables-file) ; result from cache
- ;; If cache element has an mtime, assume it came from a file.
- ;; Otherwise, assume it was set directly.
- (setq variables-file (if (nth 2 variables-file)
- (expand-file-name dir-locals-file
- (car variables-file))
- (cadr variables-file))))
+ (setq variables-file
+ ;; If there are several .dir-locals, the user probably
+ ;; wants to edit the last one (the highest priority).
+ (cond ((stringp variables-file)
+ (car (last (file-expand-wildcards variables-file))))
+ ((consp variables-file) ; result from cache
+ ;; If cache element has an mtime, assume it came from a file.
+ ;; Otherwise, assume it was set directly.
+ (if (nth 2 variables-file)
+ (let ((default-directory (car variables-file)))
+ (car (last (file-expand-wildcards dir-locals-file 'full))))
+ (cadr variables-file)))
+ (t dir-locals-file)))
;; I can't be bothered to handle this case right now.
;; Dir locals were set directly from a class. You need to
;; directly modify the class in dir-locals-class-alist.