diff options
author | Eli Zaretskii <eliz@gnu.org> | 2023-08-04 09:41:30 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2023-08-04 09:41:30 +0300 |
commit | 0f183770c56fab7917fc975222f074ca7eb4a410 (patch) | |
tree | 71539c12b3336adbea5c4c3aba5ebd7c0a3a577d /lisp/use-package/bind-key.el | |
parent | acfcf7f3690630344b090b4af6afa4d02d0147a3 (diff) | |
download | emacs-0f183770c56fab7917fc975222f074ca7eb4a410.tar.gz emacs-0f183770c56fab7917fc975222f074ca7eb4a410.tar.bz2 emacs-0f183770c56fab7917fc975222f074ca7eb4a410.zip |
Fix byte-compiled files that use 'bind-key' from use-package
* lisp/use-package/bind-key.el (bind-key): Ensure 'bind-key' is
loaded at run time. Patch by John Wiegley <johnw@gnu.org>.
(Bug#64901)
Diffstat (limited to 'lisp/use-package/bind-key.el')
-rw-r--r-- | lisp/use-package/bind-key.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/use-package/bind-key.el b/lisp/use-package/bind-key.el index 0ab72eafce2..95dda958375 100644 --- a/lisp/use-package/bind-key.el +++ b/lisp/use-package/bind-key.el @@ -196,6 +196,7 @@ can safely be called at any time." (key-description ,namevar)) (if (symbolp ,keymap) ,keymap (quote ,keymap)))) (,bindingvar (lookup-key ,kmapvar ,keyvar))) + (require 'bind-key) ; ensure `personal-keybindings' is in scope (let ((entry (assoc ,kdescvar personal-keybindings)) (details (list ,command (unless (numberp ,bindingvar) |