From: Karl Heuer Date: Tue, 27 Sep 1994 03:08:20 +0000 (+0000) Subject: (Fself_insert_command): Use type test macros. X-Git-Tag: emacs-19.34~6719 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ed76f667fce291360d82db80dfee802cfead97c4;p=emacs.git (Fself_insert_command): Use type test macros. --- 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.") 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)