mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
Add missing require
This is used for `hash-table-keys`. Fix https://github.com/jwiegley/use-package/issues/644.
This commit is contained in:
parent
dd8ef12112
commit
2a47998844
1 changed files with 6 additions and 0 deletions
|
|
@ -43,6 +43,12 @@
|
|||
(require 'cl-lib)
|
||||
(require 'tabulated-list)
|
||||
|
||||
(if (and (eq emacs-major-version 24) (eq emacs-minor-version 3))
|
||||
(defsubst hash-table-keys (hash-table)
|
||||
"Return a list of keys in HASH-TABLE."
|
||||
(cl-loop for k being the hash-keys of hash-table collect k))
|
||||
(require 'subr-x))
|
||||
|
||||
(eval-when-compile
|
||||
(require 'cl)
|
||||
(require 'regexp-opt))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue