29 lines
991 B
Plaintext
29 lines
991 B
Plaintext
---
|
|
man/curs_util.3x | 3 +++
|
|
ncurses/tinfo/lib_data.c | 2 +-
|
|
2 files changed, 4 insertions(+), 1 deletion(-)
|
|
|
|
--- man/curs_util.3x
|
|
+++ man/curs_util.3x 2016-07-07 09:01:21.335637800 +0000
|
|
@@ -172,6 +172,9 @@ ncurses modifies the last step in its co
|
|
checks if the \fBLINES\fR and \fBCOLUMNS\fR environment variables
|
|
are set to a number greater than zero.
|
|
.bP
|
|
+On openSUSE/SUSE Linux the default is \fBTRUE\fR, if you do not want this
|
|
+feature you may use the \fBuse_tioctl\fR routine with \fBFALSE\fR as an argument.
|
|
+.bP
|
|
for each, ncurses updates the corresponding environment variable
|
|
with the value that it has obtained via operating system call
|
|
or from the terminal database.
|
|
--- ncurses/tinfo/lib_data.c
|
|
+++ ncurses/tinfo/lib_data.c 2016-07-07 09:01:21.339637723 +0000
|
|
@@ -257,7 +257,7 @@ NCURSES_EXPORT_VAR(NCURSES_PRESCREEN) _n
|
|
NULL, /* _tputs_trace */
|
|
#endif
|
|
#endif
|
|
- FALSE, /* use_tioctl */
|
|
+ TRUE, /* use_tioctl */
|
|
};
|
|
/* *INDENT-ON* */
|
|
|