mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-10 00:00:39 -08:00
(cl-make-type-test): Fix paren typo.
This commit is contained in:
parent
72397ff1a9
commit
dc338e1980
1 changed files with 1 additions and 1 deletions
|
|
@ -2241,7 +2241,7 @@ The type name can then be used in `typecase', `check-type', etc."
|
|||
((eq type 'real) `(numberp ,val))
|
||||
((eq type 'fixnum) `(integerp ,val))
|
||||
;; FIXME: Should `character' accept things like ?\C-\M-a ? -stef
|
||||
((memq type '(character string-char))) `(char-valid-p ,val)
|
||||
((memq type '(character string-char)) `(char-valid-p ,val))
|
||||
(t
|
||||
(let* ((name (symbol-name type))
|
||||
(namep (intern (concat name "p"))))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue