aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1998-08-07 07:15:37 +0000
committerRichard M. Stallman1998-08-07 07:15:37 +0000
commitad4ac475214d945898ff36f7c147b44e1a748c11 (patch)
tree58e2348bedb246250a6100f8ba0e8c2c589bad04 /src
parent39d484ed795c3565403afa9d05305cb4e0257641 (diff)
downloademacs-ad4ac475214d945898ff36f7c147b44e1a748c11.tar.gz
emacs-ad4ac475214d945898ff36f7c147b44e1a748c11.zip
(Fcall_interactively): Pass new arg to Fread_key_sequence.
Diffstat (limited to 'src')
-rw-r--r--src/callint.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/callint.c b/src/callint.c
index eb60907d7f6..c3591c8acb6 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.")
549 int speccount1 = specpdl_ptr - specpdl; 549 int speccount1 = specpdl_ptr - specpdl;
550 specbind (Qcursor_in_echo_area, Qt); 550 specbind (Qcursor_in_echo_area, Qt);
551 args[i] = Fread_key_sequence (build_string (callint_message), 551 args[i] = Fread_key_sequence (build_string (callint_message),
552 Qnil, Qnil, Qnil); 552 Qnil, Qnil, Qnil, Qnil);
553 unbind_to (speccount1, Qnil); 553 unbind_to (speccount1, Qnil);
554 teml = args[i]; 554 teml = args[i];
555 visargs[i] = Fkey_description (teml); 555 visargs[i] = Fkey_description (teml);
@@ -576,7 +576,7 @@ Otherwise, this is done only if an arg is read using the minibuffer.")
576 int speccount1 = specpdl_ptr - specpdl; 576 int speccount1 = specpdl_ptr - specpdl;
577 specbind (Qcursor_in_echo_area, Qt); 577 specbind (Qcursor_in_echo_area, Qt);
578 args[i] = Fread_key_sequence (build_string (callint_message), 578 args[i] = Fread_key_sequence (build_string (callint_message),
579 Qnil, Qt, Qnil); 579 Qnil, Qt, Qnil, Qnil);
580 teml = args[i]; 580 teml = args[i];
581 visargs[i] = Fkey_description (teml); 581 visargs[i] = Fkey_description (teml);
582 unbind_to (speccount1, Qnil); 582 unbind_to (speccount1, Qnil);