From: Andrea Corallo Date: Sat, 2 Nov 2019 16:33:55 +0000 (+0100) Subject: add doc slot into comp-func struct X-Git-Tag: emacs-28.0.90~2727^2~1042 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=03d2dda12f9e5d877edd15e31d6076361ccbd75a;p=emacs.git add doc slot into comp-func struct --- diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el index c52cef6e94f..8a9305a59b8 100644 --- a/lisp/emacs-lisp/comp.el +++ b/lisp/emacs-lisp/comp.el @@ -205,6 +205,8 @@ Is in use to help the SSA rename pass.")) :documentation "The function name in the native world.") (byte-func nil :documentation "Byte compiled version.") + (doc nil :type string + :documentation "Doc string.") (lap () :type list :documentation "LAP assembly representation.") (args nil :type comp-args-base)