mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-13 09:32:47 +00:00
* Store raw documentation during native compilation (bug#42974)
* lisp/emacs-lisp/comp.el (comp-spill-lap-function) (comp-intern-func-in-ctxt): Use raw documentation.
This commit is contained in:
parent
ea35a62e6e
commit
bce9cad421
@ -671,7 +671,7 @@ clashes."
|
||||
(c-name (comp-c-func-name function-name "F"))
|
||||
(func (make-comp-func-l :name function-name
|
||||
:c-name c-name
|
||||
:doc (documentation f)
|
||||
:doc (documentation f t)
|
||||
:int-spec (interactive-form f)
|
||||
:speed (comp-spill-speed function-name)
|
||||
:pure (comp-spill-decl-spec function-name
|
||||
@ -720,7 +720,7 @@ clashes."
|
||||
(make-comp-func-d :lambda-list (aref byte-func 0)))))
|
||||
(setf (comp-func-name func) name
|
||||
(comp-func-byte-func func) byte-func
|
||||
(comp-func-doc func) (documentation byte-func)
|
||||
(comp-func-doc func) (documentation byte-func t)
|
||||
(comp-func-int-spec func) (interactive-form byte-func)
|
||||
(comp-func-c-name func) c-name
|
||||
(comp-func-lap func) lap
|
||||
|
Loading…
Reference in New Issue
Block a user