diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2021-05-07 22:41:44 -0400 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2021-05-07 22:41:44 -0400 |
commit | e4e8a1e834d7c83341450b65d06e088c92f4316e (patch) | |
tree | 16aadd7636b94001fe7f8299ffe3d80dd2e23aec /lisp | |
parent | 048cc03290abc786f439ee9838c15a81541af2aa (diff) | |
download | emacs-e4e8a1e834d7c83341450b65d06e088c92f4316e.tar.gz emacs-e4e8a1e834d7c83341450b65d06e088c92f4316e.tar.bz2 emacs-e4e8a1e834d7c83341450b65d06e088c92f4316e.zip |
* lisp/gnus/nnoo.el (defvoo, deffoo): Add `doc-string` property
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/gnus/nnoo.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/gnus/nnoo.el b/lisp/gnus/nnoo.el index 7759951662a..4e8490125f1 100644 --- a/lisp/gnus/nnoo.el +++ b/lisp/gnus/nnoo.el @@ -34,6 +34,7 @@ (defmacro defvoo (var init &optional doc &rest map) "The same as `defvar', only takes list of variables to MAP to." (declare (indent 2) + (doc-string 3) (debug (var init &optional doc &rest map))) `(prog1 ,(if doc @@ -44,6 +45,7 @@ (defmacro deffoo (func args &rest forms) "The same as `defun', only register FUNC." (declare (indent 2) + (doc-string 3) (debug (&define name lambda-list def-body))) `(prog1 (defun ,func ,args ,@forms) |