diff options
author | John Wiegley <johnw@newartisans.com> | 2015-03-25 18:14:49 -0500 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2015-03-25 18:14:49 -0500 |
commit | f1a00054b13f77f9d8f7c58de7978ff3b6d4b683 (patch) | |
tree | 98d6d070b9db164349bb5578c0bc060ec068358f /lisp/use-package/use-package.el | |
parent | c850481d069c0b799edb3039ec1950dc7c06125f (diff) | |
download | emacs-f1a00054b13f77f9d8f7c58de7978ff3b6d4b683.tar.gz emacs-f1a00054b13f77f9d8f7c58de7978ff3b6d4b683.tar.bz2 emacs-f1a00054b13f77f9d8f7c58de7978ff3b6d4b683.zip |
Keymap bindings must be interactive
Diffstat (limited to 'lisp/use-package/use-package.el')
-rw-r--r-- | lisp/use-package/use-package.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/use-package/use-package.el b/lisp/use-package/use-package.el index 0d6325c4f0f..6feb0d84a5c 100644 --- a/lisp/use-package/use-package.el +++ b/lisp/use-package/use-package.el @@ -697,6 +697,7 @@ deferred until the prefix key sequence is pressed." 'bind-key) ,(car binding) #'(lambda () + (interactive) (use-package-autoload-keymap ',(cdr binding) ',name-symbol nil)))) arg))) (use-package-concat |