aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDave Love2002-07-03 22:05:12 +0000
committerDave Love2002-07-03 22:05:12 +0000
commit835c8222613dd3b4289077a1ec274741deb78bde (patch)
tree39223130f91370f58cd0aebc5dce5db204d3d5f4 /src
parentf6e5cae04e9e086cbc5d61a0e3c7b5340e1da822 (diff)
downloademacs-835c8222613dd3b4289077a1ec274741deb78bde.tar.gz
emacs-835c8222613dd3b4289077a1ec274741deb78bde.zip
(Fself_insert_command): Use CHARACTERP.
Diffstat (limited to 'src')
-rw-r--r--src/cmds.c2
1 files changed, 1 insertions, 1 deletions
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. */)
297 CHECK_NUMBER (n); 297 CHECK_NUMBER (n);
298 298
299 /* Barf if the key that invoked this was not a character. */ 299 /* Barf if the key that invoked this was not a character. */
300 if (!INTEGERP (last_command_char)) 300 if (!CHARACTERP (last_command_char))
301 bitch_at_user (); 301 bitch_at_user ();
302 else if (XINT (n) >= 2 && NILP (current_buffer->overwrite_mode)) 302 else if (XINT (n) >= 2 && NILP (current_buffer->overwrite_mode))
303 { 303 {