aboutsummaryrefslogtreecommitdiffstats
path: root/src/minibuf.c
diff options
context:
space:
mode:
authorAndreas Schwab <[email protected]>1998-04-14 13:03:30 +0000
committerAndreas Schwab <[email protected]>1998-04-14 13:03:30 +0000
commitdab3ab3ce55b286586fc9b5abe7fc113bf8db866 (patch)
treecc94d6add139abb92591414ba47a579b83605961 /src/minibuf.c
parent6acce4eaa2408e67cc9ee79bda4dcbc02647138c (diff)
(Fself_insert_and_exit): Fix mixing of Lisp_Object and
int.
Diffstat (limited to 'src/minibuf.c')
-rw-r--r--src/minibuf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/minibuf.c b/src/minibuf.c
index 124d8eb8cc..91230e6f73 100644
--- a/src/minibuf.c
+++ b/src/minibuf.c
@@ -1913,7 +1913,7 @@ DEFUN ("self-insert-and-exit", Fself_insert_and_exit, Sself_insert_and_exit, 0,
()
{
if (INTEGERP (last_command_char))
- internal_self_insert (last_command_char, 0);
+ internal_self_insert (XINT (last_command_char), 0);
else
bitch_at_user ();