aboutsummaryrefslogtreecommitdiffstats
path: root/src/cmds.c
diff options
context:
space:
mode:
authorKarl Heuer1994-09-27 03:08:20 +0000
committerKarl Heuer1994-09-27 03:08:20 +0000
commited76f667fce291360d82db80dfee802cfead97c4 (patch)
treef903542a75dcd4bc1a245a9b87d725530a821cf3 /src/cmds.c
parent88cf185241a06953e426f44f50b7147f43014bc2 (diff)
downloademacs-ed76f667fce291360d82db80dfee802cfead97c4.tar.gz
emacs-ed76f667fce291360d82db80dfee802cfead97c4.zip
(Fself_insert_command): Use type test macros.
Diffstat (limited to 'src/cmds.c')
-rw-r--r--src/cmds.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmds.c b/src/cmds.c
index 49998adbf50..9b4341fb98d 100644
--- a/src/cmds.c
+++ b/src/cmds.c
@@ -217,7 +217,7 @@ Whichever character you type to run this command is inserted.")
217 CHECK_NUMBER (arg, 0); 217 CHECK_NUMBER (arg, 0);
218 218
219 /* Barf if the key that invoked this was not a character. */ 219 /* Barf if the key that invoked this was not a character. */
220 if (XTYPE (last_command_char) != Lisp_Int) 220 if (!INTEGERP (last_command_char))
221 bitch_at_user (); 221 bitch_at_user ();
222 else 222 else
223 while (XINT (arg) > 0) 223 while (XINT (arg) > 0)