Mercurial > emacs
changeset 41699:b0754865d85c
(cl-make-type-test): Fix paren typo.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Fri, 30 Nov 2001 09:20:17 +0000 |
parents | 722fe545e535 |
children | 83b107455579 |
files | lisp/emacs-lisp/cl-macs.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/emacs-lisp/cl-macs.el Fri Nov 30 09:13:21 2001 +0000 +++ b/lisp/emacs-lisp/cl-macs.el Fri Nov 30 09:20:17 2001 +0000 @@ -2241,7 +2241,7 @@ ((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"))))