emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/files.el


From: Richard M. Stallman
Subject: [Emacs-diffs] Changes to emacs/lisp/files.el
Date: Thu, 28 Mar 2002 13:26:08 -0500

Index: emacs/lisp/files.el
diff -c emacs/lisp/files.el:1.555 emacs/lisp/files.el:1.556
*** emacs/lisp/files.el:1.555   Sun Mar 17 23:30:45 2002
--- emacs/lisp/files.el Thu Mar 28 13:26:07 2002
***************
*** 1895,1905 ****
--- 1895,1912 ----
  (put 'ignored-local-variables 'risky-local-variable t)
  (put 'eval 'risky-local-variable t)
  (put 'file-name-handler-alist 'risky-local-variable t)
+ (put 'minor-mode-alist 'risky-local-variable t)
  (put 'minor-mode-map-alist 'risky-local-variable t)
+ (put 'minor-mode-overriding-map-alist 'risky-local-variable t)
+ (put 'overriding-local-map 'risky-local-variable t)
+ (put 'overriding-terminal-local-map 'risky-local-variable t)
+ (put 'auto-mode-alist 'risky-local-variable t)
  (put 'after-load-alist 'risky-local-variable t)
  (put 'buffer-file-name 'risky-local-variable t)
+ (put 'buffer-undo-list 'risky-local-variable t)
  (put 'buffer-auto-save-file-name 'risky-local-variable t)
  (put 'buffer-file-truename 'risky-local-variable t)
+ (put 'default-text-properties 'risky-local-variable t)
  (put 'exec-path 'risky-local-variable t)
  (put 'load-path 'risky-local-variable t)
  (put 'exec-directory 'risky-local-variable t)
***************
*** 1910,1915 ****
--- 1917,1936 ----
  (put 'outline-level 'risky-local-variable t)
  (put 'rmail-output-file-alist 'risky-local-variable t)
  (put 'font-lock-defaults 'risky-local-variable t)
+ (put 'special-display-buffer-names 'risky-local-variable t)
+ (put 'frame-title-format 'risky-local-variable t)
+ (put 'global-mode-string 'risky-local-variable t)
+ (put 'header-line-format 'risky-local-variable t)
+ (put 'icon-title-format 'risky-local-variable t)
+ (put 'input-method-alist 'risky-local-variable t)
+ (put 'vc-mode 'risky-local-variable t)
+ (put 'imenu-generic-expression 'risky-local-variable t)
+ (put 'imenu-index-alist 'risky-local-variable t)
+ (put 'standard-input 'risky-local-variable t)
+ (put 'standard-output 'risky-local-variable t)
+ (put 'unread-command-events 'risky-local-variable t)
+ (put 'max-lisp-eval-depth 'risky-local-variable t)
+ (put 'max-specpdl-size 'risky-local-variable t)
  
  ;; This one is safe because the user gets to check it before it is used.
  (put 'compile-command 'safe-local-variable t)
***************
*** 1919,1925 ****
  
  (defun hack-one-local-variable (var val)
    "\"Set\" one variable in a local variables spec.
! A few variable names are treated specially."
    (cond ((eq var 'mode)
         (funcall (intern (concat (downcase (symbol-name val))
                                  "-mode"))))
--- 1940,1947 ----
  
  (defun hack-one-local-variable (var val)
    "\"Set\" one variable in a local variables spec.
! A few patterns are specified so that any name which matches one
! is considered risky."
    (cond ((eq var 'mode)
         (funcall (intern (concat (downcase (symbol-name val))
                                  "-mode"))))
***************
*** 1932,1938 ****
        ;; Likewise for setting hook variables.
        ((or (get var 'risky-local-variable)
             (and
!             (string-match 
"-hooks?$\\|-functions?$\\|-forms?$\\|-program$\\|-command$\\|-predicate$\\|font-lock-keywords$\\|font-lock-keywords-[0-9]+$\\|font-lock-syntactic-keywords$"
                            (symbol-name var))
              (not (get var 'safe-local-variable))))
         ;; Permit evalling a put of a harmless property.
--- 1954,1960 ----
        ;; Likewise for setting hook variables.
        ((or (get var 'risky-local-variable)
             (and
!             (string-match 
"-hooks?$\\|-functions?$\\|-forms?$\\|-program$\\|-command$\\|-predicate$\\|font-lock-keywords$\\|font-lock-keywords-[0-9]+$\\|font-lock-syntactic-keywords$\\|-frame-alist$\\|-mode-alist$\\|-map$\\|-map-alist$\\|^mode-line"
                            (symbol-name var))
              (not (get var 'safe-local-variable))))
         ;; Permit evalling a put of a harmless property.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]