X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/daef0b49cbbe94c2886c8435b22a49eead21332f..9322ba2854211794c27fae9468768b80b767c211:/sbr/terminal.c diff --git a/sbr/terminal.c b/sbr/terminal.c index 5ba6dcd1..36e247b6 100644 --- a/sbr/terminal.c +++ b/sbr/terminal.c @@ -25,7 +25,7 @@ static int initLI = 0; static int initCO = 0; static int LI = 40; /* number of lines */ -static int CO = 80; /* number of colums */ +static int CO = 80; /* number of columns */ static char *ti_clear = NULL; /* terminfo string to clear screen */ static char *ti_standend = NULL; /* terminfo string to end standout mode */ static char *ti_standbegin = NULL; /* terminfo string to begin standout mode */ @@ -54,9 +54,8 @@ initialize_terminfo(void) if (rc != 0 || errret != 1) { termstatus = -1; return; - } else { - termstatus = 1; } + termstatus = 1; if (!initCO && (CO = tigetnum ("cols")) <= 0) CO = 80; @@ -120,7 +119,7 @@ nmh_clear_screen (void) if (ti_clear) tputs (ti_clear, LI, outc); else { - printf ("\f"); + putchar('\f'); } fflush (stdout);