From: Lars Ingebrigtsen Date: Sun, 5 Dec 2021 21:12:26 +0000 (+0100) Subject: Update comment about `declare-function' X-Git-Tag: emacs-29.0.90~3612^2~3^2~4 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a996ddb5e6157f8bc65f03c130ed6dcfe2707c69;p=emacs.git Update comment about `declare-function' * lisp/subr.el (declare-function): Fix comment -- `byte-compile-declare-function' doesn't exist. --- diff --git a/lisp/subr.el b/lisp/subr.el index 78c72838f3f..d224f761e1f 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -61,7 +61,8 @@ must be the first non-whitespace on a line. For more information, see Info node `(elisp)Declaring Functions'." (declare (advertised-calling-convention (fn file &optional arglist fileonly) nil)) - ;; Does nothing - byte-compile-declare-function does the work. + ;; Does nothing - `byte-compile-macroexpand-declare-function' does + ;; the work. nil)