1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-29 08:31:35 -08:00

(Fself_insert_command): Use type test macros.

This commit is contained in:
Karl Heuer 1994-09-27 03:08:20 +00:00
parent 88cf185241
commit ed76f667fc

View file

@ -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)