* lisp/emacs-lisp/cl-macs.el (character): Can't be negative
Fixes (bug#21701)
This commit is contained in:
parent
9bfcd87c04
commit
3a9df7589a
1 changed files with 1 additions and 1 deletions
|
@ -2885,7 +2885,7 @@ Of course, we really can't know that for sure, so it's just a heuristic."
|
|||
(put 'real 'cl-deftype-satisfies #'numberp)
|
||||
(put 'fixnum 'cl-deftype-satisfies #'integerp)
|
||||
(put 'base-char 'cl-deftype-satisfies #'characterp)
|
||||
(put 'character 'cl-deftype-satisfies #'integerp)
|
||||
(put 'character 'cl-deftype-satisfies #'natnump)
|
||||
|
||||
|
||||
;;;###autoload
|
||||
|
|
Loading…
Add table
Reference in a new issue