>From 8bf2e39c36a66df7e415800caa77c9116648effb Mon Sep 17 00:00:00 2001 From: Philip Kaludercic Date: Wed, 5 Oct 2022 19:45:27 +0200 Subject: [PATCH] Prevent .dir-locals.el from being byte-compiled * lisp/files-x.el (modify-dir-local-variable): Add a 'no-byte-compile' file local variable when generating a .dir-locals.el file. --- lisp/files-x.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/files-x.el b/lisp/files-x.el index da1e44e250..f6d5d6cc27 100644 --- a/lisp/files-x.el +++ b/lisp/files-x.el @@ -489,7 +489,7 @@ modify-dir-local-variable dir-locals-directory-cache)) ;; Insert modified alist of directory-local variables. - (insert ";;; Directory Local Variables\n") + (insert ";;; Directory Local Variables -*- no-byte-compile: t -*-\n") (insert ";;; For more information see (info \"(emacs) Directory Variables\")\n\n") (princ (dir-locals-to-string (sort variables -- 2.37.3