diff options
author | Reiner Steib <Reiner.Steib@gmx.de> | 2006-05-11 15:01:41 +0000 |
---|---|---|
committer | Reiner Steib <Reiner.Steib@gmx.de> | 2006-05-11 15:01:41 +0000 |
commit | 631c8020a58e69a7ba0bea8701278df57dafa315 (patch) | |
tree | 0f89307b70645874db03037f70739336c2dba3ad /lisp/emacs-lisp | |
parent | 53af865dd1bed633a63b951a4e2918311125fb2c (diff) | |
download | emacs-631c8020a58e69a7ba0bea8701278df57dafa315.tar.gz emacs-631c8020a58e69a7ba0bea8701278df57dafa315.tar.bz2 emacs-631c8020a58e69a7ba0bea8701278df57dafa315.zip |
Move `safe-local-variable' declarations to the respective files.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index da284e94548..01f9373af68 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -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) |