; * lisp/eshell/esh-cmd.el (eshell-do-eval): Fix 'eshell-manipulate' call.

This commit is contained in:
Jim Porter 2023-09-13 11:30:32 -07:00
parent 32ded573cc
commit 0fe1cd4929

View file

@ -1173,7 +1173,7 @@ have been replaced by constants."
(eval form))
((eq (car form) 'setq)
(if (cddr args) (error "Unsupported form (setq X1 E1 X2 E2..)"))
(eshell-manipulate "evaluating arguments to setq"
(eshell-manipulate form "evaluating arguments to setq"
(setcar (cdr args) (eshell-do-eval (cadr args) synchronous-p)))
(list 'quote (eval form)))
(t