projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
30d0f55
)
(Finsert_string): Use type test macros.
author
Karl Heuer
<kwzh@gnu.org>
Tue, 27 Sep 1994 02:00:42 +0000
(
02:00
+0000)
committer
Karl Heuer
<kwzh@gnu.org>
Tue, 27 Sep 1994 02:00:42 +0000
(
02:00
+0000)
src/mocklisp.c
patch
|
blob
|
history
diff --git
a/src/mocklisp.c
b/src/mocklisp.c
index 5f9d2df0af701203b9870498e35bc0dbf767c286..ccf6f15c75aea95c425a81fad945ff631813b533 100644
(file)
--- a/
src/mocklisp.c
+++ b/
src/mocklisp.c
@@
-210,9
+210,9
@@
is converted into a string by expressing it in decimal.")
{
tem = args[argnum];
retry:
- if (
XTYPE (tem) == Lisp_Int
)
+ if (
INTEGERP (tem)
)
tem = Fnumber_to_string (tem);
- if (
XTYPE (tem) == Lisp_String
)
+ if (
STRINGP (tem)
)
insert1 (tem);
else
{