aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Ingebrigtsen2022-07-31 11:38:27 +0200
committerLars Ingebrigtsen2022-07-31 11:39:00 +0200
commit18f105bd7d485a9ddffe2b2b9b8a5c2dc243a542 (patch)
treebeb2a8ba10e4d05fa19c7798d27087369e15009d
parentbd7a15ef784cbe7326e19cd78da70e3625e72aad (diff)
downloademacs-18f105bd7d485a9ddffe2b2b9b8a5c2dc243a542.tar.gz
emacs-18f105bd7d485a9ddffe2b2b9b8a5c2dc243a542.zip
Fix ede byte-compile warnings in loaddefs.el
* lisp/emacs-lisp/eieio.el (make-instance): * lisp/cedet/ede/auto.el (ede-add-project-autoload): Autoload functions referred to by ede/loaddefs.el.
-rw-r--r--lisp/cedet/ede/auto.el1
-rw-r--r--lisp/emacs-lisp/eieio.el1
2 files changed, 2 insertions, 0 deletions
diff --git a/lisp/cedet/ede/auto.el b/lisp/cedet/ede/auto.el
index 7af9987de17..7e3cac616fd 100644
--- a/lisp/cedet/ede/auto.el
+++ b/lisp/cedet/ede/auto.el
@@ -234,6 +234,7 @@ type is required and the load function used.")
234 (display-buffer b) 234 (display-buffer b)
235 )) 235 ))
236 236
237;;;###autoload
237(defun ede-add-project-autoload (projauto &optional flag) 238(defun ede-add-project-autoload (projauto &optional flag)
238 "Add PROJAUTO, an EDE autoload definition to `ede-project-class-files'. 239 "Add PROJAUTO, an EDE autoload definition to `ede-project-class-files'.
239Optional argument FLAG indicates how this autoload should be 240Optional argument FLAG indicates how this autoload should be
diff --git a/lisp/emacs-lisp/eieio.el b/lisp/emacs-lisp/eieio.el
index 565eaf2d733..984166b593a 100644
--- a/lisp/emacs-lisp/eieio.el
+++ b/lisp/emacs-lisp/eieio.el
@@ -689,6 +689,7 @@ This class is not stored in the `parent' slot of a class vector."
689(define-obsolete-function-alias 'standard-class 689(define-obsolete-function-alias 'standard-class
690 #'eieio-default-superclass "26.1") 690 #'eieio-default-superclass "26.1")
691 691
692;;;###autoload
692(cl-defgeneric make-instance (class &rest initargs) 693(cl-defgeneric make-instance (class &rest initargs)
693 "Make a new instance of CLASS based on INITARGS. 694 "Make a new instance of CLASS based on INITARGS.
694For example: 695For example: