diff options
author | Andrea Corallo <acorallo@gnu.org> | 2024-02-21 17:45:41 +0100 |
---|---|---|
committer | Andrea Corallo <acorallo@gnu.org> | 2024-02-21 17:52:52 +0100 |
commit | 44d5c667d7775f881473c7c6f7d9bdef7594bd79 (patch) | |
tree | 2bbb5f2cb3f6b4979859f83500b04fdd2e101c08 /lisp/emacs-lisp/comp.el | |
parent | e6882a5cc89d9375dfa73156db6836af19ef7b8a (diff) | |
download | emacs-44d5c667d7775f881473c7c6f7d9bdef7594bd79.tar.gz emacs-44d5c667d7775f881473c7c6f7d9bdef7594bd79.tar.bz2 emacs-44d5c667d7775f881473c7c6f7d9bdef7594bd79.zip |
* lisp/emacs-lisp/comp.el (comp--compute-function-types): Fix missing doc.
Diffstat (limited to 'lisp/emacs-lisp/comp.el')
-rw-r--r-- | lisp/emacs-lisp/comp.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el index 46d2896f2be..e0da01bcc5d 100644 --- a/lisp/emacs-lisp/comp.el +++ b/lisp/emacs-lisp/comp.el @@ -3033,7 +3033,7 @@ Set it into the `type' slot." (setf (comp-cstr-imm (comp-func-type func)) type)))) (defun comp--compute-function-types (_) - "" + "Compute and store the type specifier for all functions." (maphash #'comp--compute-function-type (comp-ctxt-funcs-h comp-ctxt))) |