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.
This commit is contained in:
parent
b50b2c4640
commit
a7b810a93f
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
:command `(,(expand-file-name invocation-name invocation-directory)
|
||||||
"-Q"
|
"-Q"
|
||||||
"--batch"
|
"--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
|
;; this is what silences the byte compiler
|
||||||
"--eval" ,(prin1-to-string `(setq doom-modules ',doom-modules
|
"--eval" ,(prin1-to-string `(setq doom-modules ',doom-modules
|
||||||
doom-disabled-packages ',doom-disabled-packages
|
doom-disabled-packages ',doom-disabled-packages
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue