1
Fork 0
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:
Damien Cassou 2018-03-11 13:21:00 +01:00
parent dd8ef12112
commit 2a47998844

View file

@ -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))