Mercurial > emacs
changeset 88823:61df12ee934b
(Fself_insert_command): Use CHARACTERP.
author | Dave Love <fx@gnu.org> |
---|---|
date | Wed, 03 Jul 2002 22:05:12 +0000 |
parents | 9c92853c0d10 |
children | 32f4cadc5ac7 |
files | src/cmds.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
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)) {