From 835c8222613dd3b4289077a1ec274741deb78bde Mon Sep 17 00:00:00 2001 From: Dave Love Date: Wed, 3 Jul 2002 22:05:12 +0000 Subject: [PATCH] (Fself_insert_command): Use CHARACTERP. --- src/cmds.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cmds.c b/src/cmds.c index 045afbbe92d..776e6b28083 100644 --- a/src/cmds.c +++ b/src/cmds.c @@ -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)) { -- 2.39.2