]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix cl-progv binding order
authorToby Cubitt <toby@dr-qubit.org>
Sat, 20 Mar 2021 09:01:13 +0000 (10:01 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Sat, 20 Mar 2021 09:01:19 +0000 (10:01 +0100)
* lisp/emacs-lisp/cl-macs.el (cl-progv): Bind variables in the
correct order (bug#47272).

lisp/emacs-lisp/cl-macs.el
test/lisp/emacs-lisp/cl-macs-tests.el

index 9eabfc63b4adfd5a27d6ed25e1ae71ab0b1040f1..27ed07b66732c007acbc43df421da50bf1597fdb 100644 (file)
@@ -1976,7 +1976,8 @@ a `let' form, except that the list of symbols can be computed at run-time."
               (,binds ()))
          (while ,syms
            (push (list (pop ,syms) (list 'quote (pop ,vals))) ,binds))
-         (eval (list 'let ,binds (list 'funcall (list 'quote ,bodyfun))))))))
+         (eval (list 'let (nreverse ,binds)
+                     (list 'funcall (list 'quote ,bodyfun))))))))
 
 (defconst cl--labels-magic (make-symbol "cl--labels-magic"))
 
index df1d26a074e1d8881e688d12d454bf868710bdaf..dd6487603d3eb4dda687fb4aba97a4707399c8ca 100644 (file)
@@ -648,4 +648,9 @@ collection clause."
                      #'len))
             (`(function (lambda (,_ ,_) . ,_)) t))))
 
+(ert-deftest cl-macs--progv ()
+  (should (= (cl-progv '(test test) '(1 2) test) 2))
+  (should (equal (cl-progv '(test1 test2) '(1 2) (list test1 test2))
+                 '(1 2))))
+
 ;;; cl-macs-tests.el ends here