diff options
author | Radon Rosborough <radon.neon@gmail.com> | 2017-05-07 15:23:50 -0700 |
---|---|---|
committer | Radon Rosborough <radon.neon@gmail.com> | 2017-05-07 15:23:50 -0700 |
commit | 3823a9059e9eead000f1b7b79de7226ccaee65c3 (patch) | |
tree | 4d8a6aeb63d1da66ba79362bc87697718b358d60 /lisp/use-package | |
parent | 0a12111d2fd0703f41d998cf0bdb923801d2eb22 (diff) | |
download | emacs-3823a9059e9eead000f1b7b79de7226ccaee65c3.tar.gz emacs-3823a9059e9eead000f1b7b79de7226ccaee65c3.tar.bz2 emacs-3823a9059e9eead000f1b7b79de7226ccaee65c3.zip |
Fix quoting error in failed autoload message
Diffstat (limited to 'lisp/use-package')
-rw-r--r-- | lisp/use-package/use-package.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/use-package/use-package.el b/lisp/use-package/use-package.el index 74f1f309436..b6fecb9fe33 100644 --- a/lisp/use-package/use-package.el +++ b/lisp/use-package/use-package.el @@ -1199,7 +1199,7 @@ deferred until the prefix key sequence is pressed." (if (bound-and-true-p use-package--recursive-autoload) (use-package-error (format "Autoloading failed to define function %S" - command)) + ',command)) (when (use-package-install-deferred-package ',package-name :autoload) (require ',package-name) |