diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2021-12-03 09:07:37 -0500 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2021-12-03 09:07:37 -0500 |
commit | e3a10c8cd90330736432f95858f1a85a65e8afbf (patch) | |
tree | 431869e1e931d24b0334b4e9cba6e1e799d2109a /lisp/emacs-lisp | |
parent | 5869bf55b2326f517394d8911de1837b61a15e58 (diff) | |
download | emacs-e3a10c8cd90330736432f95858f1a85a65e8afbf.tar.gz emacs-e3a10c8cd90330736432f95858f1a85a65e8afbf.tar.bz2 emacs-e3a10c8cd90330736432f95858f1a85a65e8afbf.zip |
* lisp/emacs-lisp/cl-macs.el (natnum): Fix typo
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/cl-macs.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el index 0da759a0f17..f78fdcf0085 100644 --- a/lisp/emacs-lisp/cl-macs.el +++ b/lisp/emacs-lisp/cl-macs.el @@ -3365,7 +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) + (natnum . natnump) (number . numberp) (null . null) (real . numberp) |