diff options
| author | Richard M. Stallman | 1996-03-20 13:34:21 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-03-20 13:34:21 +0000 |
| commit | 491ee8415ef56793ea9a1e6a26b224648c8e2390 (patch) | |
| tree | c4596faa9e815249a25a9099c0d0314600cceac3 /src | |
| parent | f7359658348635b5e37de9c89ced90cc271f1fb8 (diff) | |
| download | emacs-491ee8415ef56793ea9a1e6a26b224648c8e2390.tar.gz emacs-491ee8415ef56793ea9a1e6a26b224648c8e2390.zip | |
(Fcall_interactively): In `c' case, use message_nolog
instead of message1_nolog.
Diffstat (limited to 'src')
| -rw-r--r-- | src/callint.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/callint.c b/src/callint.c index a874053d229..9e9a1f1d0dc 100644 --- a/src/callint.c +++ b/src/callint.c | |||
| @@ -480,7 +480,10 @@ Otherwise, this is done only if an arg is read using the minibuffer.") | |||
| 480 | break; | 480 | break; |
| 481 | 481 | ||
| 482 | case 'c': /* Character */ | 482 | case 'c': /* Character */ |
| 483 | message1_nolog (callint_message); | 483 | /* Use message_nolog rather than message1_nolog here, |
| 484 | so that nothing bad happens if callint_message is changed | ||
| 485 | within Fread_char (by a timer, for example). */ | ||
| 486 | message_nolog ("%s", callint_message); | ||
| 484 | args[i] = Fread_char (); | 487 | args[i] = Fread_char (); |
| 485 | message1_nolog ((char *) 0); | 488 | message1_nolog ((char *) 0); |
| 486 | /* Passing args[i] directly stimulates compiler bug */ | 489 | /* Passing args[i] directly stimulates compiler bug */ |