diff options
author | John Wiegley <johnw@newartisans.com> | 2017-05-09 11:57:54 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-09 11:57:54 -0700 |
commit | c38c33e6face805d4a4ef774ce3ae61a1a1b6e9c (patch) | |
tree | 4d8a6aeb63d1da66ba79362bc87697718b358d60 /lisp/use-package/use-package.el | |
parent | 0a12111d2fd0703f41d998cf0bdb923801d2eb22 (diff) | |
parent | 3823a9059e9eead000f1b7b79de7226ccaee65c3 (diff) | |
download | emacs-c38c33e6face805d4a4ef774ce3ae61a1a1b6e9c.tar.gz emacs-c38c33e6face805d4a4ef774ce3ae61a1a1b6e9c.tar.bz2 emacs-c38c33e6face805d4a4ef774ce3ae61a1a1b6e9c.zip |
Merge pull request from raxod502/feat/failed-autoload-msg
Fix quoting error in failed autoload message
GitHub-reference: https://github.com/jwiegley/use-package/issues/456
Diffstat (limited to 'lisp/use-package/use-package.el')
-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) |