1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-07 15:00:34 -08:00

(macro-declaration-function): Add a `doc-string' declaration.

This commit is contained in:
Stefan Monnier 2005-10-24 16:10:42 +00:00
parent 0a3fde9d0e
commit 38729cfb2a

View file

@ -50,6 +50,8 @@ The return value of this function is not used."
(put macro 'lisp-indent-function (car (cdr d))))
((and (consp d) (eq (car d) 'debug))
(put macro 'edebug-form-spec (car (cdr d))))
((and (consp d) (eq (car d) 'doc-string))
(put macro 'doc-string-elt (car (cdr d))))
(t
(message "Unknown declaration %s" d))))))