mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-04 11:40:22 +00:00
* lisp/help-fns.el (describe-variable):
Check {file,dir}-local-variables-alist, and buffer-file-name, in the correct buffer. This seems to have Just Worked in 24.3 - when and why did it change?
This commit is contained in:
parent
20bc9ac5eb
commit
dd8e49fda2
@ -1,3 +1,9 @@
|
||||
2014-02-08 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* help-fns.el (describe-variable):
|
||||
Check {file,dir}-local-variables-alist, and buffer-file-name,
|
||||
in the correct buffer.
|
||||
|
||||
2014-02-08 Ingo Lohmar <i.lohmar@gmail.com>
|
||||
|
||||
* help-fns.el (describe-variable): Fix the case where
|
||||
|
@ -911,13 +911,18 @@ if it is given a local binding.\n")))
|
||||
(t ".")))
|
||||
(terpri))
|
||||
|
||||
(when (member (cons variable val) file-local-variables-alist)
|
||||
(when (member (cons variable val)
|
||||
(with-current-buffer buffer
|
||||
file-local-variables-alist))
|
||||
(setq extra-line t)
|
||||
(if (member (cons variable val) dir-local-variables-alist)
|
||||
(let ((file (and (buffer-file-name)
|
||||
(not (file-remote-p (buffer-file-name)))
|
||||
(if (member (cons variable val)
|
||||
(with-current-buffer buffer
|
||||
dir-local-variables-alist))
|
||||
(let ((file (and (buffer-file-name buffer)
|
||||
(not (file-remote-p
|
||||
(buffer-file-name buffer)))
|
||||
(dir-locals-find-file
|
||||
(buffer-file-name))))
|
||||
(buffer-file-name buffer))))
|
||||
(dir-file t))
|
||||
(princ " This variable's value is directory-local")
|
||||
(if (null file)
|
||||
|
Loading…
Reference in New Issue
Block a user