Mercurial > emacs
comparison src/callint.c @ 14847:3065719a83a9
(Fcall_interactively): In `c' case, use message_nolog
instead of message1_nolog.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 20 Mar 1996 13:34:21 +0000 |
parents | ee40177f6c68 |
children | e26f5c2b75a6 |
comparison
equal
deleted
inserted
replaced
14846:e72246089ebc | 14847:3065719a83a9 |
---|---|
478 Fother_buffer (Fcurrent_buffer (), Qnil), | 478 Fother_buffer (Fcurrent_buffer (), Qnil), |
479 Qnil); | 479 Qnil); |
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 */ |
487 teml = args[i]; | 490 teml = args[i]; |
488 visargs[i] = Fchar_to_string (teml); | 491 visargs[i] = Fchar_to_string (teml); |