summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1995-11-30 00:31:52 +0000
committerRichard M. Stallman <rms@gnu.org>1995-11-30 00:31:52 +0000
commit63e347a5d96c0a49bb31e9127cd368d2c96e65da (patch)
tree7b4a9f8944bdff0aac9fc0c9eb20b6f33916c359
parent06fb342f476dfa26357f744a033862de666b5ce2 (diff)
downloademacs-63e347a5d96c0a49bb31e9127cd368d2c96e65da.tar.gz
(Fcall_interactively): In `c' case, clear out the message
after reading the character.
-rw-r--r--src/callint.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/callint.c b/src/callint.c
index 231de94c3f0..3dbca425c1c 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);