diff options
| author | Andrea Corallo | 2020-10-01 07:55:00 +0200 |
|---|---|---|
| committer | Andrea Corallo | 2020-10-01 07:55:00 +0200 |
| commit | 2cc82563d288f5fa1bf1f763eae7934320d40014 (patch) | |
| tree | d63bb07c1c755bd890e5e26bd9137354731e34db | |
| parent | ec23b719e5350f70f731060bca04d5b23887f08c (diff) | |
| download | emacs-2cc82563d288f5fa1bf1f763eae7934320d40014.tar.gz emacs-2cc82563d288f5fa1bf1f763eae7934320d40014.zip | |
* lisp/emacs-lisp/comp.el (comp-c-func-name): Add autoload cookie.
| -rw-r--r-- | lisp/emacs-lisp/comp.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el index dec5c8ec41d..02b08119f9c 100644 --- a/lisp/emacs-lisp/comp.el +++ b/lisp/emacs-lisp/comp.el | |||
| @@ -598,6 +598,8 @@ instruction." | |||
| 598 | (or (comp-spill-decl-spec function-name 'speed) | 598 | (or (comp-spill-decl-spec function-name 'speed) |
| 599 | comp-speed)) | 599 | comp-speed)) |
| 600 | 600 | ||
| 601 | ;; Autoloaded as might by used by `disassemble-internal'. | ||
| 602 | ;;;###autoload | ||
| 601 | (defun comp-c-func-name (name prefix &optional first) | 603 | (defun comp-c-func-name (name prefix &optional first) |
| 602 | "Given NAME return a name suitable for the native code. | 604 | "Given NAME return a name suitable for the native code. |
| 603 | Add PREFIX in front of it. If FIRST is not nil pick the first | 605 | Add PREFIX in front of it. If FIRST is not nil pick the first |