diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2020-09-29 22:28:23 -0400 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2020-09-29 22:28:23 -0400 |
commit | 52afb2b1041e2ebbefbe77e8689b141cfc3df5a0 (patch) | |
tree | 72cac5b81d3ac4e84e4ff681dd1199e960debee0 /lisp/emacs-lisp | |
parent | a90bfc5f3be67f7075247c19468321b25780206d (diff) | |
download | emacs-52afb2b1041e2ebbefbe77e8689b141cfc3df5a0.tar.gz emacs-52afb2b1041e2ebbefbe77e8689b141cfc3df5a0.tar.bz2 emacs-52afb2b1041e2ebbefbe77e8689b141cfc3df5a0.zip |
* lisp/emacs-lisp/cl-macs.el (hash-table): Define the type's typep test
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/cl-macs.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el index c38019d4a73..19cdbd7aeb5 100644 --- a/lisp/emacs-lisp/cl-macs.el +++ b/lisp/emacs-lisp/cl-macs.el @@ -3152,6 +3152,7 @@ Of course, we really can't know that for sure, so it's just a heuristic." (buffer . bufferp) (character . natnump) (char-table . char-table-p) + (hash-table . hash-table-p) (cons . consp) (fixnum . integerp) (float . floatp) |