From a7b810a93f05e4966d3dcce207c7c2ce77bd4039 Mon Sep 17 00:00:00 2001 From: Jeetaditya Chatterjee Date: Sun, 15 Oct 2023 19:33:07 +0100 Subject: [PATCH] fix(emacs-lisp): lexical argument, error popup this was caused by the use of fn! and an argument which interacted badly with doom snippets of all things. --- modules/lang/emacs-lisp/autoload.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/lang/emacs-lisp/autoload.el b/modules/lang/emacs-lisp/autoload.el index 1dc48759b..a94b8e4b2 100644 --- a/modules/lang/emacs-lisp/autoload.el +++ b/modules/lang/emacs-lisp/autoload.el @@ -309,7 +309,7 @@ as `+emacs-lisp-non-package-mode' will enable it and disable the other checkers. :command `(,(expand-file-name invocation-name invocation-directory) "-Q" "--batch" - ,@(mapcan (fn! (list "-L" %)) elisp-flymake-byte-compile-load-path) + ,@(mapcan (lambda (p) (list "-L" p)) elisp-flymake-byte-compile-load-path) ;; this is what silences the byte compiler "--eval" ,(prin1-to-string `(setq doom-modules ',doom-modules doom-disabled-packages ',doom-disabled-packages