From 66381027737a926f4309a86b0b1bab24d0dad381 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Tue, 29 Jan 2008 14:45:13 +0000 Subject: (hack-local-variables): Don't query about fake variables. --- lisp/files.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lisp/files.el') 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 -- cgit v1.2.1