mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-25 23:10:47 -08:00
(Fcall_interactively): Pass extra arg to Fread_string.
This commit is contained in:
parent
1d8d92f4fe
commit
55c4d99f91
1 changed files with 3 additions and 2 deletions
|
|
@ -634,12 +634,13 @@ 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 (callint_message), Qnil, Qnil);
|
||||
args[i] = Fread_string (build_string (callint_message),
|
||||
Qnil, Qnil, Qnil);
|
||||
break;
|
||||
|
||||
case 'S': /* Any symbol. */
|
||||
visargs[i] = Fread_string (build_string (callint_message),
|
||||
Qnil, Qnil);
|
||||
Qnil, Qnil, Qnil);
|
||||
/* Passing args[i] directly stimulates compiler bug */
|
||||
teml = visargs[i];
|
||||
args[i] = Fintern (teml, Qnil);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue