summaryrefslogtreecommitdiff
path: root/src/callint.c
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1995-01-30 00:41:51 +0000
committerRichard M. Stallman <rms@gnu.org>1995-01-30 00:41:51 +0000
commit71b334638affafe3b86504380969a2d6912830ef (patch)
treeb5b45723efffe7c533d94dd6c6fbe10d6180aee5 /src/callint.c
parent34f21c64c8e80d846bbb1b755e1fbf0b82ef4f45 (diff)
downloademacs-71b334638affafe3b86504380969a2d6912830ef.tar.gz
(Fcall_interactively): Pass new arg to Fread_string.
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 a6c5570bb3a..a25032b7fa7 100644
--- a/src/callint.c
+++ b/src/callint.c
@@ -533,11 +533,11 @@ Otherwise, this is done only if an arg is read using the minibuffer.")
break;
case 's': /* String read via minibuffer. */
- args[i] = Fread_string (build_string (prompt), Qnil);
+ args[i] = Fread_string (build_string (prompt), Qnil, Qnil);
break;
case 'S': /* Any symbol. */
- visargs[i] = Fread_string (build_string (prompt), Qnil);
+ visargs[i] = Fread_string (build_string (prompt), Qnil, Qnil);
/* Passing args[i] directly stimulates compiler bug */
teml = visargs[i];
args[i] = Fintern (teml, Qnil);