From a22924769005da774a803a07e36d46f50ea69485 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Sat, 23 Mar 2019 23:42:05 -0400 Subject: [PATCH] .emacs: disable all local variable processing within files' contents. --- .emacs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.emacs b/.emacs index 5e9a7a0..ba4547d 100644 --- a/.emacs +++ b/.emacs @@ -56,6 +56,11 @@ ;; 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))) -- 2.43.2