From: Dave Love Date: Wed, 3 Jul 2002 22:05:12 +0000 (+0000) Subject: (Fself_insert_command): Use CHARACTERP. X-Git-Tag: emacs-pretest-23.0.90~8295^2~1864^2~596 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=835c8222613dd3b4289077a1ec274741deb78bde;p=emacs.git (Fself_insert_command): Use CHARACTERP. --- 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)) {