summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2009-08-26 03:08:33 +0000
committerGlenn Morris <rgm@gnu.org>2009-08-26 03:08:33 +0000
commit3029e594aee1fe24db6904bf6af2d145c3b32052 (patch)
tree1205dbbb627c38b201b9b9c375f986288797abde /lisp
parent6dc3311d252c4f85ab7ba93dfef6486afa2fbd5b (diff)
downloademacs-3029e594aee1fe24db6904bf6af2d145c3b32052.tar.gz
emacs-3029e594aee1fe24db6904bf6af2d145c3b32052.tar.bz2
emacs-3029e594aee1fe24db6904bf6af2d145c3b32052.zip
(enable-local-variables, enable-local-eval)
(safe-local-variable-values, safe-local-eval-forms): Mark as risky in the defcustoms. (auto-mode-alist, ignored-local-variables) (save-some-buffers-action-alist): Move risky declarations to the definitions. (dabbrev-case-fold-search, dabbrev-case-replace, display-time-string) (font-lock-defaults, format-alist, imenu--index-alist) (imenu-generic-expression, input-method-alist, minor-mode-alist) (mode-line-buffer-identification, mode-line-client, mode-line-modes) (mode-line-modified, mode-line-mule-info, mode-line-position) (mode-line-process, mode-line-remote, outline-level) (parse-time-rules, rmail-output-file-alist) (special-display-buffer-names, vc-mode): Move risky declarations to the relevant files.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog32
-rw-r--r--lisp/files.el38
2 files changed, 40 insertions, 30 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 540b967be49..b7c2e0c60b6 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -3,6 +3,38 @@
* bindings.el (standard-mode-line-format): Reposition dashes in
which-func entry. (Bug#4217)
+ * files.el (enable-local-variables, enable-local-eval)
+ (safe-local-variable-values, safe-local-eval-forms): Mark as risky in
+ the defcustoms.
+ (auto-mode-alist, ignored-local-variables)
+ (save-some-buffers-action-alist): Move risky declarations to the
+ definitions.
+ (dabbrev-case-fold-search, dabbrev-case-replace, display-time-string)
+ (font-lock-defaults, format-alist, imenu--index-alist)
+ (imenu-generic-expression, input-method-alist, minor-mode-alist)
+ (mode-line-buffer-identification, mode-line-client, mode-line-modes)
+ (mode-line-modified, mode-line-mule-info, mode-line-position)
+ (mode-line-process, mode-line-remote, outline-level)
+ (parse-time-rules, rmail-output-file-alist)
+ (special-display-buffer-names, vc-mode):
+ Move risky declarations to the relevant files.
+ * bindings.el (mode-line-client, mode-line-mule-info, mode-line-process)
+ (mode-line-modified, mode-line-remote, mode-line-position)
+ (mode-line-modes, mode-line-buffer-identification, minor-mode-alist)
+ * font-core.el (font-lock-defaults):
+ * format.el (format-alist):
+ * vc-hooks.el (vc-mode):
+ * window.el (special-display-buffer-names):
+ * international/mule-cmds.el (input-method-alist):
+ Define riskiness here (dumped file) rather than in files.el.
+ * dabbrev.el (dabbrev-case-fold-search, dabbrev-case-replace):
+ * imenu.el (imenu-generic-expression, imenu--index-alist):
+ * outline.el (outline-level):
+ * time.el (display-time-string):
+ * calendar/parse-time.el (parse-time-rules):
+ * mail/rmailout.el (rmail-output-file-alist):
+ Autoload riskiness here, rather than placing in files.el.
+
2009-08-26 Andreas Schwab <schwab@linux-m68k.org>
* emacs-lisp/bytecomp.el (byte-compile-lapcode): Signal overflow.
diff --git a/lisp/files.el b/lisp/files.el
index 5c1927546d7..3ff6c5c9f26 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -493,6 +493,7 @@ a -*- line.
The command \\[normal-mode], when used interactively,
always obeys file local variable specifications and the -*- line,
and ignores this variable."
+ :risky t
:type '(choice (const :tag "Query Unsafe" t)
(const :tag "Safe Only" :safe)
(const :tag "Do all" :all)
@@ -514,6 +515,7 @@ specified in a -*- line.")
The value can be t, nil or something else.
A value of t means obey `eval' variables.
A value of nil means ignore them; anything else means query."
+ :risky t
:type '(choice (const :tag "Obey" t)
(const :tag "Ignore" nil)
(other :tag "Query" other))
@@ -2306,6 +2308,7 @@ appear in `auto-coding-alist' with `no-conversion' coding system.
See also `interpreter-mode-alist', which detects executable script modes
based on the interpreters they specify to run,
and `magic-mode-alist', which determines modes based on file contents.")
+(put 'auto-mode-alist 'risky-local-variable t)
(defun conf-mode-maybe ()
"Select Conf mode or XML mode according to start of file."
@@ -2641,6 +2644,7 @@ Otherwise, return nil; point may be changed."
'(ignored-local-variables safe-local-variable-values
file-local-variables-alist dir-local-variables-alist)
"Variables to be ignored in a file's local variable spec.")
+(put 'ignored-local-variables 'risky-local-variable t)
(defvar hack-local-variables-hook nil
"Normal hook run after processing a file's local variables specs.
@@ -2651,6 +2655,7 @@ in order to initialize other data structure based on them.")
"List variable-value pairs that are considered safe.
Each element is a cons cell (VAR . VAL), where VAR is a variable
symbol and VAL is a value that is considered safe."
+ :risky t
:group 'find-file
:type 'alist)
@@ -2659,6 +2664,7 @@ symbol and VAL is a value that is considered safe."
Add expressions to this list if you want Emacs to evaluate them, when
they appear in an `eval' local variable specification, without first
asking you for confirmation."
+ :risky t
:group 'find-file
:version "22.2"
:type '(repeat sexp))
@@ -2666,63 +2672,34 @@ asking you for confirmation."
;; Risky local variables:
(mapc (lambda (var) (put var 'risky-local-variable t))
'(after-load-alist
- auto-mode-alist
buffer-auto-save-file-name
buffer-file-name
buffer-file-truename
buffer-undo-list
- dabbrev-case-fold-search
- dabbrev-case-replace
debugger
default-text-properties
- display-time-string
- enable-local-eval
- enable-local-variables
eval
exec-directory
exec-path
file-name-handler-alist
- font-lock-defaults
- format-alist
frame-title-format
global-mode-string
header-line-format
icon-title-format
- ignored-local-variables
- imenu--index-alist
- imenu-generic-expression
inhibit-quit
- input-method-alist
load-path
max-lisp-eval-depth
max-specpdl-size
- minor-mode-alist
minor-mode-map-alist
minor-mode-overriding-map-alist
- mode-line-buffer-identification
mode-line-format
- mode-line-client
- mode-line-modes
- mode-line-modified
- mode-line-mule-info
- mode-line-position
- mode-line-process
- mode-line-remote
mode-name
- outline-level
overriding-local-map
overriding-terminal-local-map
- parse-time-rules
process-environment
- rmail-output-file-alist
- safe-local-variable-values
- safe-local-eval-forms
- save-some-buffers-action-alist
- special-display-buffer-names
standard-input
standard-output
- unread-command-events
- vc-mode))
+ unread-command-events))
;; Safe local variables:
;;
@@ -4399,6 +4376,7 @@ This requires the external program `diff' to be in your `exec-path'."
nil)
"view changes in this buffer"))
"ACTION-ALIST argument used in call to `map-y-or-n-p'.")
+(put 'save-some-buffers-action-alist 'risky-local-variable t)
(defvar buffer-save-without-query nil
"Non-nil means `save-some-buffers' should save this buffer without asking.")