diff --git a/lisp/use-package/use-package.el b/lisp/use-package/use-package.el index 950d0bf0ec2..57a80824fcc 100644 --- a/lisp/use-package/use-package.el +++ b/lisp/use-package/use-package.el @@ -450,8 +450,10 @@ For full documentation. please see commentary. (not (use-package-plist-get args :demand))) (let (form) (mapc #'(lambda (command) - (push `(autoload (function ,command) - ,name-string nil t) form)) + (push `(unless (fboundp (quote ,command)) + (autoload (function ,command) + ,name-string nil t)) + form)) commands) `(when ,(or predicate t)