mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
editor/format: fix not-a-function error
Because unquoted lists were being evaluated, it was treated as a function call.
This commit is contained in:
@ -52,7 +52,7 @@
|
||||
|
||||
(defun +format--make-shell-command-list (command-list ok-statuses error-regexp)
|
||||
`(let (args)
|
||||
(dolist (arg (list ,@command-list))
|
||||
(dolist (arg ',command-list)
|
||||
(cond ((stringp arg)
|
||||
(push arg args))
|
||||
((listp arg)
|
||||
|
Reference in New Issue
Block a user