diff src/cmds.c @ 9135:551c9e4fa12a

(Fself_insert_command): Use type test macros.
author Karl Heuer <kwzh@gnu.org>
date Tue, 27 Sep 1994 03:08:20 +0000
parents a6be4973b11f
children 84822d6ed3be
line wrap: on
line diff
--- a/src/cmds.c	Tue Sep 27 03:07:54 1994 +0000
+++ b/src/cmds.c	Tue Sep 27 03:08:20 1994 +0000
@@ -217,7 +217,7 @@
   CHECK_NUMBER (arg, 0);
 
   /* Barf if the key that invoked this was not a character.  */
-  if (XTYPE (last_command_char) != Lisp_Int)
+  if (!INTEGERP (last_command_char))
     bitch_at_user ();
   else
     while (XINT (arg) > 0)