summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2017-05-09 11:57:54 -0700
committerGitHub <noreply@github.com>2017-05-09 11:57:54 -0700
commitc38c33e6face805d4a4ef774ce3ae61a1a1b6e9c (patch)
tree4d8a6aeb63d1da66ba79362bc87697718b358d60
parent0a12111d2fd0703f41d998cf0bdb923801d2eb22 (diff)
parent3823a9059e9eead000f1b7b79de7226ccaee65c3 (diff)
downloademacs-c38c33e6fa.tar.gz
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
-rw-r--r--lisp/use-package/use-package.el2
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)