summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2006-04-11 17:58:58 +0000
committerRichard M. Stallman <rms@gnu.org>2006-04-11 17:58:58 +0000
commitaa9addfa93a58c52f368d7ccc2bbcd178bcb067c (patch)
tree238b3a46c3935e7cff34095c0d95b60bd65e0b3c /lisp/emacs-lisp
parenta5ce12c36abccb735ed79bef208c8a0936a618ca (diff)
downloademacs-aa9addfa93a58c52f368d7ccc2bbcd178bcb067c.tar.gz
emacs-aa9addfa93a58c52f368d7ccc2bbcd178bcb067c.tar.bz2
emacs-aa9addfa93a58c52f368d7ccc2bbcd178bcb067c.zip
(byte-compile-file): Bind enable-local-variables to :safe,
and make normal-mode obey it.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/bytecomp.el6
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el
index 83620f3344f..da284e94548 100644
--- a/lisp/emacs-lisp/bytecomp.el
+++ b/lisp/emacs-lisp/bytecomp.el
@@ -1650,8 +1650,12 @@ The value is non-nil if there were no errors, nil if errors."
;; If they change the file name, then change it for the output also.
(let ((buffer-file-name filename)
(default-major-mode 'emacs-lisp-mode)
+ ;; Ignore unsafe local variables.
+ ;; We only care about a few of them for our purposes.
+ (enable-local-variables :safe)
(enable-local-eval nil))
- (normal-mode)
+ ;; Arg of t means don't alter enable-local-variables.
+ (normal-mode t)
(setq filename buffer-file-name))
;; Set the default directory, in case an eval-when-compile uses it.
(setq default-directory (file-name-directory filename)))