aboutsummaryrefslogtreecommitdiffstats
path: root/src/callint.c
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1998-08-07 07:15:37 +0000
committerRichard M. Stallman <[email protected]>1998-08-07 07:15:37 +0000
commitad4ac475214d945898ff36f7c147b44e1a748c11 (patch)
tree58e2348bedb246250a6100f8ba0e8c2c589bad04 /src/callint.c
parent39d484ed795c3565403afa9d05305cb4e0257641 (diff)
(Fcall_interactively): Pass new arg to Fread_key_sequence.
Diffstat (limited to 'src/callint.c')
-rw-r--r--src/callint.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/callint.c b/src/callint.c
index eb60907d7f..c3591c8acb 100644
--- a/src/callint.c
+++ b/src/callint.c
@@ -549,7 +549,7 @@ Otherwise, this is done only if an arg is read using the minibuffer.")
int speccount1 = specpdl_ptr - specpdl;
specbind (Qcursor_in_echo_area, Qt);
args[i] = Fread_key_sequence (build_string (callint_message),
- Qnil, Qnil, Qnil);
+ Qnil, Qnil, Qnil, Qnil);
unbind_to (speccount1, Qnil);
teml = args[i];
visargs[i] = Fkey_description (teml);
@@ -576,7 +576,7 @@ Otherwise, this is done only if an arg is read using the minibuffer.")
int speccount1 = specpdl_ptr - specpdl;
specbind (Qcursor_in_echo_area, Qt);
args[i] = Fread_key_sequence (build_string (callint_message),
- Qnil, Qt, Qnil);
+ Qnil, Qt, Qnil, Qnil);
teml = args[i];
visargs[i] = Fkey_description (teml);
unbind_to (speccount1, Qnil);