Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
491ee841
Commit
491ee841
authored
Mar 20, 1996
by
Richard M. Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(Fcall_interactively): In `c' case, use message_nolog
instead of message1_nolog.
parent
f7359658
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
src/callint.c
src/callint.c
+4
-1
No files found.
src/callint.c
View file @
491ee841
...
...
@@ -480,7 +480,10 @@ Otherwise, this is done only if an arg is read using the minibuffer.")
break
;
case
'c'
:
/* Character */
message1_nolog
(
callint_message
);
/* Use message_nolog rather than message1_nolog here,
so that nothing bad happens if callint_message is changed
within Fread_char (by a timer, for example). */
message_nolog
(
"%s"
,
callint_message
);
args
[
i
]
=
Fread_char
();
message1_nolog
((
char
*
)
0
);
/* Passing args[i] directly stimulates compiler bug */
...
...
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