]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fself_insert_command): Use CHARACTERP.
authorDave Love <fx@gnu.org>
Wed, 3 Jul 2002 22:05:12 +0000 (22:05 +0000)
committerDave Love <fx@gnu.org>
Wed, 3 Jul 2002 22:05:12 +0000 (22:05 +0000)
src/cmds.c

index 045afbbe92d8608e7a197f294af2e60745dc4b45..776e6b280836cb09f0dea1453e6b8c25baf9c0d7 100644 (file)
@@ -297,7 +297,7 @@ Whichever character you type to run this command is inserted.  */)
   CHECK_NUMBER (n);
 
   /* Barf if the key that invoked this was not a character.  */
-  if (!INTEGERP (last_command_char))
+  if (!CHARACTERP (last_command_char))
     bitch_at_user ();
   else if (XINT (n) >= 2 && NILP (current_buffer->overwrite_mode))
     {