Mercurial > emacs
diff src/cmds.c @ 88823:61df12ee934b
(Fself_insert_command): Use CHARACTERP.
| author | Dave Love <fx@gnu.org> |
|---|---|
| date | Wed, 03 Jul 2002 22:05:12 +0000 |
| parents | aac41b50c875 |
| children | 08f4bdc64a89 |
line wrap: on
line diff
--- a/src/cmds.c Wed Jul 03 22:03:46 2002 +0000 +++ b/src/cmds.c Wed Jul 03 22:05:12 2002 +0000 @@ -297,7 +297,7 @@ 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)) {
