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:
parent
d0d0f3b0a6
commit
e38e79e6d7
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue