From 07682ca3c964d8a20a49e14d0a3e85fbc29c0db9 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Thu, 30 Nov 1995 00:31:52 +0000 Subject: [PATCH] (Fcall_interactively): In `c' case, clear out the message after reading the character. --- src/callint.c | 1 + 1 file changed, 1 insertion(+) 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); -- 2.20.1