Eliminate calls of the form "fprintf(stdout,". Thanks for the idea to

Vladimir N. Oleynik.
This commit is contained in:
Matt Kraai
2001-01-18 02:57:08 +00:00
parent c9acf8c766
commit 12f417edbd
20 changed files with 102 additions and 108 deletions

View File

@ -332,7 +332,7 @@ static void setConMode()
{
if (G.charmode == CHM_TRY) {
G.charmode = CHM_ON;
fprintf(stdout, "\r\nEntering character mode%s'^]'.\r\n", escapecharis);
printf("\r\nEntering character mode%s'^]'.\r\n", escapecharis);
rawmode();
}
}
@ -340,7 +340,7 @@ static void setConMode()
{
if (G.charmode != CHM_OFF) {
G.charmode = CHM_OFF;
fprintf(stdout, "\r\nEntering line mode%s'^C'.\r\n", escapecharis);
printf("\r\nEntering line mode%s'^C'.\r\n", escapecharis);
cookmode();
}
}