]> git.eshelyaron.com Git - emacs.git/commitdiff
Collapse 'if' forms in Eshell iterative evaluation
authorJim Porter <jporterbugs@gmail.com>
Fri, 15 Sep 2023 00:51:36 +0000 (17:51 -0700)
committerJim Porter <jporterbugs@gmail.com>
Fri, 15 Sep 2023 00:54:41 +0000 (17:54 -0700)
* lisp/eshell/esh-cmd.el (eshell-do-eval): After evaluating 'if'
conditional, replace the form with the THEN or ELSE body.

lisp/eshell/esh-cmd.el

index 0bc9ce34d32275654402a143af4258df1425e4c7..169d66bc1274e58650e10f1f112423e5285724f8 100644 (file)
@@ -1100,16 +1100,23 @@ have been replaced by constants."
                 eshell--test-body (copy-tree (car args)))))
        ((eq (car form) 'if)
         (eshell-manipulate form "evaluating if condition"
-          (setcar args (eshell-do-eval (car args) synchronous-p)))
-        (eshell-do-eval
-         (cond
-          ((eval (car args))            ; COND is non-nil
-           (cadr args))
-          ((cdddr args)                 ; Multiple ELSE forms
-           `(progn ,@(cddr args)))
-          (t                            ; Zero or one ELSE forms
-           (caddr args)))
-         synchronous-p))
+          ;; Evaluate the condition and replace our `if' form with
+          ;; THEN or ELSE as appropriate.
+          (let ((new-form
+                 (cond
+                  ((cadr (eshell-do-eval (car args) synchronous-p))
+                   (cadr args))            ; COND is non-nil
+                  ((cdddr args)
+                   `(progn ,@(cddr args))) ; Multiple ELSE forms
+                  (t
+                   (caddr args)))))        ; Zero or one ELSE forms
+            (if (consp new-form)
+                (progn
+                  (setcar form (car new-form))
+                  (setcdr form (cdr new-form)))
+              (setcar form 'progn)
+              (setcdr form new-form))))
+        (eshell-do-eval form synchronous-p))
        ((eq (car form) 'setcar)
        (setcar (cdr args) (eshell-do-eval (cadr args) synchronous-p))
        (eval form))