]> git.eshelyaron.com Git - emacs.git/commitdiff
(hack-one-local-variable): Test for risky-local-variable property.
authorRichard M. Stallman <rms@gnu.org>
Thu, 7 Apr 1994 19:03:17 +0000 (19:03 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 7 Apr 1994 19:03:17 +0000 (19:03 +0000)
Put such properties on some variables, including minor-mode-map-alist.

lisp/files.el

index dc5d11e322951e5e38405db25cad4cff981537de..0cd4a9554034ad25ce8d7e58f53d4f0120bd27ed 100644 (file)
@@ -1101,6 +1101,12 @@ If `enable-local-variables' is nil, this function does not check for a
   '(enable-local-eval)
   "Variables to be ignored in a file's local variable spec.")
 
+;; Get confirmation before setting these variables as locals in a file.
+(put 'eval 'risky-local-variable t)
+(put 'file-name-handler-alist 'risky-local-variable t)
+(put 'minor-mode-map-alist 'risky-local-variable t)
+(put 'after-load-alist 'risky-local-variable t)
+           
 ;; "Set" one variable in a local variables spec.
 ;; A few variable names are treated specially.
 (defun hack-one-local-variable (var val)
@@ -1111,7 +1117,7 @@ If `enable-local-variables' is nil, this function does not check for a
         nil)
        ;; "Setting" eval means either eval it or do nothing.
        ;; Likewise for setting hook variables.
-       ((or (memq var '(eval file-name-handler-alist after-load-alist))
+       ((or (get var 'risky-local-variable)
             (string-match "-hooks?$\\|-functions?$\\|-forms?$"
                           (symbol-name var)))
         (if (and (not (string= (user-login-name) "root"))