]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/emacs-lisp/generator.el (iter-defun): Add 'doc-string' prop.
authorStefan Monnier <monnier@iro.umontreal.ca>
Thu, 11 Jan 2018 16:24:38 +0000 (11:24 -0500)
committerStefan Monnier <monnier@iro.umontreal.ca>
Thu, 11 Jan 2018 16:24:38 +0000 (11:24 -0500)
lisp/emacs-lisp/generator.el

index b19f6fab7221d7edb59292195a6a13d9e79e1e09..506df59d8e2c3428989d90f32d465ed82a55401b 100644 (file)
@@ -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))