diff options
| author | Richard M. Stallman | 1995-11-30 00:31:52 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-11-30 00:31:52 +0000 |
| commit | 07682ca3c964d8a20a49e14d0a3e85fbc29c0db9 (patch) | |
| tree | 6fd49efd1f3f0a796b082b31be3896dede749ade /src | |
| parent | 8d908f848cb5b69743d4273b4f344af0b5fbb214 (diff) | |
| download | emacs-07682ca3c964d8a20a49e14d0a3e85fbc29c0db9.tar.gz emacs-07682ca3c964d8a20a49e14d0a3e85fbc29c0db9.zip | |
(Fcall_interactively): In `c' case, clear out the message
after reading the character.
Diffstat (limited to 'src')
| -rw-r--r-- | src/callint.c | 1 |
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.") | |||
| 481 | case 'c': /* Character */ | 481 | case 'c': /* Character */ |
| 482 | message1 (callint_message); | 482 | message1 (callint_message); |
| 483 | args[i] = Fread_char (); | 483 | args[i] = Fread_char (); |
| 484 | message1 ((char *) 0); | ||
| 484 | /* Passing args[i] directly stimulates compiler bug */ | 485 | /* Passing args[i] directly stimulates compiler bug */ |
| 485 | teml = args[i]; | 486 | teml = args[i]; |
| 486 | visargs[i] = Fchar_to_string (teml); | 487 | visargs[i] = Fchar_to_string (teml); |