]> git.eshelyaron.com Git - emacs.git/commitdiff
Don't increment array index in cl-loop twice (Bug#40727)
authorNoam Postavsky <npostavs@gmail.com>
Thu, 30 Apr 2020 22:55:40 +0000 (18:55 -0400)
committerNoam Postavsky <npostavs@gmail.com>
Thu, 7 May 2020 12:23:56 +0000 (08:23 -0400)
* lisp/emacs-lisp/cl-macs.el (cl--parse-loop-clause): Put the temp-idx
increment in cl--loop-body, leaving just the side-effect free testing
of the index for both cl--loop-body and cl--loop-conditions.
* test/lisp/emacs-lisp/cl-macs-tests.el (cl-macs-loop-and-arrays):
Extend test to cover this case.

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

index fef8786b5991cd02032b60c3e6cf717b3c29a40c..3317c580028636dd4c84cef55e18e1f3f36e6c55 100644 (file)
@@ -1320,8 +1320,9 @@ For more details, see Info node `(cl)Loop Facility'.
                      (temp-idx (make-symbol "--cl-idx--")))
                  (push (list temp-vec (pop cl--loop-args)) loop-for-bindings)
                  (push (list temp-idx -1) loop-for-bindings)
+                  (push `(setq ,temp-idx (1+ ,temp-idx)) cl--loop-body)
                  (cl--push-clause-loop-body
-                   `(< (setq ,temp-idx (1+ ,temp-idx)) (length ,temp-vec)))
+                   `(< ,temp-idx (length ,temp-vec)))
                  (if (eq word 'across-ref)
                      (push (list var `(aref ,temp-vec ,temp-idx))
                            cl--loop-symbol-macs)
index 77609a42a991f2ff3b42a3027dc0d0a047a7cb06..983e79ac57c6f6297ce28c638bf51bc627620ffb 100644 (file)
@@ -43,6 +43,9 @@
   "Bug#40727"
   (should (equal (cl-loop for y = (- (or x 0)) and x across [1 2]
                           collect (cons x y))
+                 '((1 . 0) (2 . -1))))
+  (should (equal (cl-loop for x across [1 2] and y = (- (or x 0))
+                          collect (cons x y))
                  '((1 . 0) (2 . -1)))))
 
 (ert-deftest cl-macs-loop-destructure ()