comparison src/callint.c @ 13664:dfbef4de96f0

(Fcall_interactively): In `c' case, clear out the message after reading the character.
author Richard M. Stallman <rms@gnu.org>
date Thu, 30 Nov 1995 00:31:52 +0000
parents 8c89b569cfa9
children 8310d6085087
comparison
equal deleted inserted replaced
13663:197f7ae5493d 13664:dfbef4de96f0
479 break; 479 break;
480 480
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);
487 break; 488 break;
488 489