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:
parent
88cf185241
commit
ed76f667fc
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue