]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix evaluation of negated argument predicates in Eshell
authorJim Porter <jporterbugs@gmail.com>
Sun, 13 Mar 2022 14:36:37 +0000 (15:36 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Sun, 13 Mar 2022 18:59:07 +0000 (19:59 +0100)
* lisp/eshell/em-pred.el (eshell-add-pred-func): Let-bind 'pred' so
the lambdas see the original value (bug#54369).

lisp/eshell/em-pred.el

index 216c71f59e4b06d1bdd7334f650cf06d2287c5fd..970329e12a96d0fb6255f6ef7fb5b476663b8280 100644 (file)
@@ -360,12 +360,12 @@ resultant list of strings."
 
 (defun eshell-add-pred-func (pred funcs negate follow)
   "Add the predicate function PRED to FUNCS."
-  (if negate
-      (setq pred (lambda (file)
-                  (not (funcall pred file)))))
-  (if follow
-      (setq pred (lambda (file)
-                  (funcall pred (file-truename file)))))
+  (when negate
+    (setq pred (let ((pred pred))
+                 (lambda (file) (not (funcall pred file))))))
+  (when follow
+    (setq pred (let ((pred pred))
+                 (lambda (file) (funcall pred (file-truename file))))))
   (cons pred funcs))
 
 (defun eshell-pred-user-or-group (mod-char mod-type attr-index get-id-func)