Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
dc338e19
Commit
dc338e19
authored
Nov 30, 2001
by
Stefan Monnier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(cl-make-type-test): Fix paren typo.
parent
72397ff1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
lisp/emacs-lisp/cl-macs.el
lisp/emacs-lisp/cl-macs.el
+1
-1
No files found.
lisp/emacs-lisp/cl-macs.el
View file @
dc338e19
...
...
@@ -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"
))))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment