mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2026-09-10 07:46:51 -04:00
* lisp/emacs-lisp/generator.el (iter-defun): Add 'doc-string' prop.
This commit is contained in:
parent
dbb4aac212
commit
1f7f03742d
|
|
@ -681,7 +681,8 @@ When called as a function, NAME returns an iterator value that
|
|||
encapsulates the state of a computation that produces a sequence
|
||||
of values. Callers can retrieve each value using `iter-next'."
|
||||
(declare (indent defun)
|
||||
(debug (&define name lambda-list lambda-doc def-body)))
|
||||
(debug (&define name lambda-list lambda-doc def-body))
|
||||
(doc-string 3))
|
||||
(cl-assert lexical-binding)
|
||||
(let* ((parsed-body (macroexp-parse-body body))
|
||||
(declarations (car parsed-body))
|
||||
|
|
|
|||
Loading…
Reference in a new issue