* lisp/emacs-lisp/cl-macs.el (cl-parse-loop-clause): Fix error in recent
conversion to backquotes. Fixes: debbugs:11652
This commit is contained in:
parent
71adb94b71
commit
2eb8792296
2 changed files with 5 additions and 1 deletions
|
@ -1108,7 +1108,7 @@ Valid clauses are:
|
|||
(let ((temp-len (make-symbol "--cl-len--")))
|
||||
(push (list temp-len `(length ,temp-seq))
|
||||
loop-for-bindings)
|
||||
(push (list var `(elt ,temp-seq temp-idx))
|
||||
(push (list var `(elt ,temp-seq ,temp-idx))
|
||||
cl--loop-symbol-macs)
|
||||
(push `(< ,temp-idx ,temp-len) cl--loop-body))
|
||||
(push (list var nil) loop-for-bindings)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue