* lisp/emacs-lisp/generator.el (iter-do): Add a debug declaration.
This commit is contained in:
committed by
Eli Zaretskii
parent
caa63cc96c
commit
78e9065e9f
@@ -718,7 +718,8 @@ is blocked."
|
||||
"Loop over values from an iterator.
|
||||
Evaluate BODY with VAR bound to each value from ITERATOR.
|
||||
Return the value with which ITERATOR finished iteration."
|
||||
(declare (indent 1))
|
||||
(declare (indent 1)
|
||||
(debug ((symbolp form) body)))
|
||||
(let ((done-symbol (cps--gensym "iter-do-iterator-done"))
|
||||
(condition-symbol (cps--gensym "iter-do-condition"))
|
||||
(it-symbol (cps--gensym "iter-do-iterator"))
|
||||
|
||||
Reference in New Issue
Block a user