changeset 68401:b393baae88e0

(risky-local-variable-p): Follow var aliases.
author Richard M. Stallman <rms@gnu.org>
date Thu, 26 Jan 2006 17:55:04 +0000
parents d2b4af1c4fef
children e1e34f1d35e3
files lisp/files.el
diffstat 1 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/files.el	Thu Jan 26 17:54:27 2006 +0000
+++ b/lisp/files.el	Thu Jan 26 17:55:04 2006 +0000
@@ -2450,6 +2450,10 @@
   "Non-nil if SYM could be dangerous as a file-local variable with value VAL.
 If VAL is nil or omitted, the question is whether any value might be
 dangerous."
+  ;; If this is an alias, check the base name.
+  (condition-case nil
+      (setq sym (indirect-variable sym))
+    (error nil))
   (let ((safep (get sym 'safe-local-variable)))
     (or (get sym 'risky-local-variable)
 	(and (string-match "-hooks?$\\|-functions?$\\|-forms?$\\|-program$\\|-commands?$\\|-predicates?$\\|font-lock-keywords$\\|font-lock-keywords-[0-9]+$\\|font-lock-syntactic-keywords$\\|-frame-alist$\\|-mode-alist$\\|-map$\\|-map-alist$"