Move `safe-local-variable' declarations to the respective files.
This commit is contained in:
parent
53af865dd1
commit
631c8020a5
9 changed files with 24 additions and 18 deletions
|
|
@ -1,5 +1,10 @@
|
|||
2006-05-11 Reiner Steib <Reiner.Steib@gmx.de>
|
||||
|
||||
* files.el, newcomment.el, outline.el, simple.el,
|
||||
emacs-lisp/bytecomp.el, progmodes/cc-compat.el,
|
||||
progmodes/cc-vars.el, progmodes/compile.el: Move
|
||||
`safe-local-variable' declarations to the respective files.
|
||||
|
||||
* help-fns.el (describe-variable): Don't print safe-var if it is
|
||||
byte-code. Improve wording as suggested by Luc Teirlinck
|
||||
<teirllm@auburn.edu>.
|
||||
|
|
|
|||
|
|
@ -293,6 +293,7 @@ For example, add -*-byte-compile-dynamic: t;-*- on the first line.
|
|||
|
||||
When this option is true, if you load the compiled file and then move it,
|
||||
the functions you loaded will not be able to run.")
|
||||
;;;###autoload(put 'byte-compile-dynamic 'safe-local-variable 'booleanp)
|
||||
|
||||
(defcustom byte-compile-dynamic-docstrings t
|
||||
"*If non-nil, compile doc strings for lazy access.
|
||||
|
|
@ -311,6 +312,7 @@ You can also set the variable globally.
|
|||
This option is enabled by default because it reduces Emacs memory usage."
|
||||
:group 'bytecomp
|
||||
:type 'boolean)
|
||||
;;;###autoload(put 'byte-compile-dynamic-docstrings 'safe-local-variable 'booleanp)
|
||||
|
||||
(defcustom byte-optimize-log nil
|
||||
"*If true, the byte-compiler will log its optimizations into *Compile-Log*.
|
||||
|
|
@ -355,6 +357,7 @@ Elements of the list may be be:
|
|||
(const callargs) (const redefine)
|
||||
(const obsolete) (const noruntime)
|
||||
(const cl-functions) (const interactive-only))))
|
||||
;;;###autoload(put 'byte-compile-warnings 'safe-local-variable 'booleanp)
|
||||
|
||||
(defvar byte-compile-interactive-only-functions
|
||||
'(beginning-of-buffer end-of-buffer replace-string replace-regexp
|
||||
|
|
@ -1589,6 +1592,7 @@ recompile every `.el' file that already has a `.elc' file."
|
|||
This is normally set in local file variables at the end of the elisp file:
|
||||
|
||||
;; Local Variables:\n;; no-byte-compile: t\n;; End: ")
|
||||
;;;###autoload(put 'no-byte-compile 'safe-local-variable 'booleanp)
|
||||
|
||||
;;;###autoload
|
||||
(defun byte-compile-file (filename &optional load)
|
||||
|
|
|
|||
|
|
@ -162,6 +162,7 @@ The truename of a file is found by chasing all links
|
|||
both at the file level and at the levels of the containing directories."
|
||||
:type 'boolean
|
||||
:group 'find-file)
|
||||
(put 'find-file-visit-truename 'safe-local-variable 'boolean)
|
||||
|
||||
(defcustom revert-without-query nil
|
||||
"*Specify which files should be reverted without query.
|
||||
|
|
@ -249,6 +250,7 @@ nil means make them for files that have some already.
|
|||
(other :tag "Always" t))
|
||||
:group 'backup
|
||||
:group 'vc)
|
||||
(put 'version-control 'safe-local-variable 'symbolp)
|
||||
|
||||
(defcustom dired-kept-versions 2
|
||||
"*When cleaning directory, number of versions to keep."
|
||||
|
|
@ -268,12 +270,14 @@ If nil, ask confirmation. Any other value prevents any trimming."
|
|||
"*Number of oldest versions to keep when a new numbered backup is made."
|
||||
:type 'integer
|
||||
:group 'backup)
|
||||
(put 'kept-old-versions 'safe-local-variable 'integerp)
|
||||
|
||||
(defcustom kept-new-versions 2
|
||||
"*Number of newest versions to keep when a new numbered backup is made.
|
||||
Includes the new backup. Must be > 0"
|
||||
:type 'integer
|
||||
:group 'backup)
|
||||
(put 'kept-new-versions 'safe-local-variable 'integerp)
|
||||
|
||||
(defcustom require-final-newline nil
|
||||
"*Whether to add a newline automatically at the end of the file.
|
||||
|
|
@ -2351,27 +2355,12 @@ asking you for confirmation."
|
|||
;; FIXME: Some variables should be moved according to the rules above.
|
||||
(mapc (lambda (pair)
|
||||
(put (car pair) 'safe-local-variable (cdr pair)))
|
||||
'((byte-compile-dynamic . booleanp)
|
||||
(byte-compile-dynamic-docstrings . booleanp)
|
||||
(byte-compile-warnings . booleanp)
|
||||
(c-basic-offset . integerp)
|
||||
(c-file-style . stringp)
|
||||
(c-indent-level . integerp)
|
||||
(comment-column . integerp)
|
||||
(compile-command . string-or-null-p)
|
||||
(find-file-visit-truename . booleanp)
|
||||
(fill-column . integerp)
|
||||
(fill-prefix . string-or-null-p)
|
||||
'((fill-column . integerp) ;; C source code
|
||||
(indent-tabs-mode . booleanp) ;; C source code
|
||||
(kept-old-versions . integerp)
|
||||
(kept-new-versions . integerp)
|
||||
(left-margin . integerp)
|
||||
(no-byte-compile . booleanp)
|
||||
(left-margin . integerp) ;; C source code
|
||||
(no-update-autoloads . booleanp)
|
||||
(outline-regexp . string-or-null-p)
|
||||
(tab-width . integerp) ;; C source code
|
||||
(truncate-lines . booleanp) ;; C source code
|
||||
(version-control . symbolp)))
|
||||
(truncate-lines . booleanp));; C source code
|
||||
|
||||
(put 'c-set-style 'safe-local-eval-function t)
|
||||
|
||||
|
|
|
|||
|
|
@ -104,6 +104,7 @@ not to go beyond `comment-fill-column'."
|
|||
:type 'integer
|
||||
:group 'comment)
|
||||
(make-variable-buffer-local 'comment-column)
|
||||
;;;###autoload(put 'comment-column 'safe-local-variable 'integerp)
|
||||
|
||||
;;;###autoload
|
||||
(defvar comment-start nil
|
||||
|
|
|
|||
|
|
@ -54,6 +54,7 @@ The recommended way to set this is with a Local Variables: list
|
|||
in the file it applies to. See also `outline-heading-end-regexp'."
|
||||
:type '(choice regexp (const nil))
|
||||
:group 'outlines)
|
||||
;;;###autoload(put 'outline-regexp 'safe-local-variable 'string-or-null-p)
|
||||
|
||||
(defcustom outline-heading-end-regexp "\n"
|
||||
"Regular expression to match the end of a heading line.
|
||||
|
|
|
|||
|
|
@ -62,6 +62,8 @@
|
|||
;; In case c-mode.el isn't loaded
|
||||
(defvar c-indent-level 2
|
||||
"*Indentation of C statements with respect to containing block.")
|
||||
;;;###autoload(put 'c-indent-level 'safe-local-variable 'integerp)
|
||||
|
||||
(defvar c-brace-imaginary-offset 0
|
||||
"*Imagined indentation of a C open brace that actually follows a statement.")
|
||||
(defvar c-brace-offset 0
|
||||
|
|
|
|||
|
|
@ -248,6 +248,7 @@ Also used as the indentation step when `c-syntactic-indentation' is
|
|||
nil."
|
||||
:type 'integer
|
||||
:group 'c)
|
||||
;;;###autoload(put 'c-basic-offset 'safe-local-variable 'integerp)
|
||||
|
||||
(defcustom c-tab-always-indent t
|
||||
"*Controls the operation of the TAB key.
|
||||
|
|
@ -1542,6 +1543,7 @@ will set the style of the file to this value automatically.
|
|||
Note that file style settings are applied before file offset settings
|
||||
as designated in the variable `c-file-offsets'.")
|
||||
(make-variable-buffer-local 'c-file-style)
|
||||
;;;###autoload(put 'c-file-style 'safe-local-variable 'string-or-null-p)
|
||||
|
||||
(defvar c-file-offsets nil
|
||||
"Variable interface for setting offsets via File Local Variables.
|
||||
|
|
|
|||
|
|
@ -453,6 +453,7 @@ You might also use mode hooks to specify it in certain modes, like this:
|
|||
(file-name-sans-extension buffer-file-name))))))"
|
||||
:type 'string
|
||||
:group 'compilation)
|
||||
;;;###autoload(put 'compile-command 'safe-local-variable 'stringp)
|
||||
|
||||
;;;###autoload
|
||||
(defcustom compilation-disable-input nil
|
||||
|
|
|
|||
|
|
@ -4058,6 +4058,7 @@ If optional arg REALLY-WORD is non-nil, it finds just a word."
|
|||
string)
|
||||
:group 'fill)
|
||||
(make-variable-buffer-local 'fill-prefix)
|
||||
;;;###autoload(put 'fill-prefix 'safe-local-variable 'string-or-null-p)
|
||||
|
||||
(defcustom auto-fill-inhibit-regexp nil
|
||||
"*Regexp to match lines which should not be auto-filled."
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue