]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix warning about obsoleted generalized variables
authorLars Ingebrigtsen <larsi@gnus.org>
Thu, 25 Aug 2022 12:54:49 +0000 (14:54 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Thu, 25 Aug 2022 12:54:49 +0000 (14:54 +0200)
* lisp/emacs-lisp/bytecomp.el (byte-compile-warn-obsolete):
Autoload so that the call here from gv.el (about obsolete
generalized variables) doesn't bug out (bug#57394).

lisp/emacs-lisp/bytecomp.el

index c25250533a4967d1c08aae651496ab66036915d7..a16486dc31cb9be33b19d7fafc327f4f93976ad4 100644 (file)
@@ -1356,6 +1356,7 @@ FORMAT and ARGS are as in `byte-compile-warn'."
   (let ((byte-compile-form-stack (cons arg byte-compile-form-stack)))
     (apply #'byte-compile-warn format args)))
 
+;;;###autoload
 (defun byte-compile-warn-obsolete (symbol type)
   "Warn that SYMBOL (a variable, function or generalized variable) is obsolete.
 TYPE is a string that say which one of these three types it is."