diff options
| author | Andrey A. Chernov <ache@FreeBSD.org> | 1994-10-31 01:48:48 +0000 |
|---|---|---|
| committer | Andrey A. Chernov <ache@FreeBSD.org> | 1994-10-31 01:48:48 +0000 |
| commit | 6acf7a7072ffa4df84285171173ec003e427b5a1 (patch) | |
| tree | c1d7b76f9dad411df8fdabeaab8df1f7b75e330c | |
| parent | 6d59e80597daacd9a5a11cb9680c341d53f16784 (diff) | |
Notes
| -rw-r--r-- | lib/libncurses/lib_newterm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libncurses/lib_newterm.c b/lib/libncurses/lib_newterm.c index feffc90188df..1fed65c6f976 100644 --- a/lib/libncurses/lib_newterm.c +++ b/lib/libncurses/lib_newterm.c @@ -58,8 +58,8 @@ char *use_it = _ncurses_copyright; #ifdef MYTINFO if (setupterm(term, fileno(ofp), &errret) != OK) return NULL; - COLS = cur_term->true_columns; - LINES = cur_term->true_lines; + COLS = columns; + LINES = lines; #else if (setupterm(term, fileno(ofp), &errret) != 1) return NULL; |
