]> gitweb.michael.orlitzky.com - emacs.d.git/commitdiff
.emacs: disable all local variable processing within files' contents.
authorMichael Orlitzky <michael@orlitzky.com>
Sun, 24 Mar 2019 03:42:05 +0000 (23:42 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Sun, 24 Mar 2019 03:42:05 +0000 (23:42 -0400)
.emacs

diff --git a/.emacs b/.emacs
index 5e9a7a03d31572f99798789f8f770e6e613dcd70..ba4547de9602fc07f6f8b3ecd11d2788a13a1a29 100644 (file)
--- a/.emacs
+++ b/.emacs
 ;; Don't leave backups everywhere.
 (setq backup-inhibited t)
 
 ;; Don't leave backups everywhere.
 (setq backup-inhibited t)
 
+;; Don't let the file's contents modify my editor, because that needs
+;; to be said? More importantly, don't interrupt me to ask me if I
+;; want to process the variables that emacs KNOWS are unsafe.
+(setq enable-local-variables nil)
+
 ;; Add the directory containing .emacs to the load-path.
 (add-to-list 'load-path (file-name-directory (file-truename user-init-file)))
 
 ;; Add the directory containing .emacs to the load-path.
 (add-to-list 'load-path (file-name-directory (file-truename user-init-file)))