changeset 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 37d46d623ed9
children 083a2f0f63f6
files src/cmds.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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)