diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2021-12-03 08:56:52 -0500 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2021-12-03 08:56:52 -0500 |
commit | 5869bf55b2326f517394d8911de1837b61a15e58 (patch) | |
tree | 815f1331f12426784ba90a31eafcc481ee46815c /lisp/emacs-lisp | |
parent | d3eb3918d4989408ae8b71d39c24924f2f2343c7 (diff) | |
download | emacs-5869bf55b2326f517394d8911de1837b61a15e58.tar.gz emacs-5869bf55b2326f517394d8911de1837b61a15e58.tar.bz2 emacs-5869bf55b2326f517394d8911de1837b61a15e58.zip |
* lisp/emacs-lisp/cl-macs.el (natnum): Define it as a type
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 9c9a778f045..0da759a0f17 100644 --- a/lisp/emacs-lisp/cl-macs.el +++ b/lisp/emacs-lisp/cl-macs.el @@ -3365,6 +3365,7 @@ Of course, we really can't know that for sure, so it's just a heuristic." (integer . integerp) (keyword . keywordp) (list . listp) + (natum . natnump) (number . numberp) (null . null) (real . numberp) |