From: Stefan Monnier Date: Thu, 11 Jan 2018 16:24:38 +0000 (-0500) Subject: * lisp/emacs-lisp/generator.el (iter-defun): Add 'doc-string' prop. X-Git-Tag: emacs-26.0.91~16 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1f7f03742de79b143efdbc8c005c31adfe0600db;p=emacs.git * lisp/emacs-lisp/generator.el (iter-defun): Add 'doc-string' prop. --- diff --git a/lisp/emacs-lisp/generator.el b/lisp/emacs-lisp/generator.el index b19f6fab722..506df59d8e2 100644 --- a/lisp/emacs-lisp/generator.el +++ b/lisp/emacs-lisp/generator.el @@ -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))