Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
55c4d99f
Commit
55c4d99f
authored
May 15, 1997
by
Richard M. Stallman
Browse files
(Fcall_interactively): Pass extra arg to Fread_string.
parent
1d8d92f4
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
src/callint.c
src/callint.c
+3
-2
No files found.
src/callint.c
View file @
55c4d99f
...
...
@@ -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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment