aboutsummaryrefslogtreecommitdiffstats
path: root/src/callint.c
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1995-11-30 00:31:52 +0000
committerRichard M. Stallman <[email protected]>1995-11-30 00:31:52 +0000
commit07682ca3c964d8a20a49e14d0a3e85fbc29c0db9 (patch)
tree6fd49efd1f3f0a796b082b31be3896dede749ade /src/callint.c
parent8d908f848cb5b69743d4273b4f344af0b5fbb214 (diff)
(Fcall_interactively): In `c' case, clear out the message
after reading the character.
Diffstat (limited to 'src/callint.c')
-rw-r--r--src/callint.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/callint.c b/src/callint.c
index 231de94c3f..3dbca425c1 100644
--- a/src/callint.c
+++ b/src/callint.c
@@ -481,6 +481,7 @@ Otherwise, this is done only if an arg is read using the minibuffer.")
case 'c': /* Character */
message1 (callint_message);
args[i] = Fread_char ();
+ message1 ((char *) 0);
/* Passing args[i] directly stimulates compiler bug */
teml = args[i];
visargs[i] = Fchar_to_string (teml);