From: Michael Orlitzky Date: Sun, 24 Mar 2019 03:42:05 +0000 (-0400) Subject: .emacs: disable all local variable processing within files' contents. X-Git-Url: http://gitweb.michael.orlitzky.com/?p=emacs.d.git;a=commitdiff_plain;h=a22924769005da774a803a07e36d46f50ea69485 .emacs: disable all local variable processing within files' contents. --- 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)))