diff options
author | Richard M. Stallman <rms@gnu.org> | 2008-01-29 14:45:13 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2008-01-29 14:45:13 +0000 |
commit | 66381027737a926f4309a86b0b1bab24d0dad381 (patch) | |
tree | 7ac7d4a722601f12105d198a01dd67b0b80311ca /lisp/files.el | |
parent | 17cb69a5ae5be8e51528480a3fc12ff996097de3 (diff) | |
download | emacs-66381027737a926f4309a86b0b1bab24d0dad381.tar.gz |
(hack-local-variables): Don't query about fake variables.
Diffstat (limited to 'lisp/files.el')
-rw-r--r-- | lisp/files.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/files.el b/lisp/files.el index ea327f48f2c..7c0557cd5ad 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -2767,7 +2767,8 @@ is specified, returning t if it is specified." (dolist (elt result) (let ((var (car elt)) (val (cdr elt))) - (or (eq var 'mode) + ;; Don't query about the fake variables. + (or (memq var '(mode unibyte coding)) (and (eq var 'eval) (or (eq enable-local-eval t) (hack-one-local-variable-eval-safep |