summaryrefslogtreecommitdiff
path: root/src/callint.c
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1992-12-21 05:38:25 +0000
committerRichard M. Stallman <rms@gnu.org>1992-12-21 05:38:25 +0000
commitc957a721a4b421ff8fda62e88d0d0984f7f9a2ec (patch)
treee9daf99f06ddeb39e48382e8492177dca6f45a63 /src/callint.c
parentec96686816f2dc1f8362dc577a01727994076f82 (diff)
downloademacs-c957a721a4b421ff8fda62e88d0d0984f7f9a2ec.tar.gz
(Fcall_interactively): For `s', use Fread_string.
Diffstat (limited to 'src/callint.c')
-rw-r--r--src/callint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/callint.c b/src/callint.c
index 9f0a98c24bd..53cad4a4a78 100644
--- a/src/callint.c
+++ b/src/callint.c
@@ -493,7 +493,7 @@ Otherwise, this is done only if an arg is read using the minibuffer.")
break;
case 'S': /* Any symbol. */
- visargs[i] = Fread_no_blanks_input (build_string (prompt), Qnil);
+ visargs[i] = Fread_string (build_string (prompt), Qnil);
/* Passing args[i] directly stimulates compiler bug */
teml = visargs[i];
args[i] = Fintern (teml, Qnil);