summaryrefslogtreecommitdiffstats
path: root/lib/libncurses/lib_doupdate.c
diff options
context:
space:
mode:
authorache <ache@FreeBSD.org>1997-08-25 07:41:15 +0000
committerache <ache@FreeBSD.org>1997-08-25 07:41:15 +0000
commit55ba1a93b942a8056a8829883d191508e4a69dd6 (patch)
tree4cf8660ed14428df6fd32c7453a3283f2b26d63a /lib/libncurses/lib_doupdate.c
parente779aaeea32924e0708694dde350540711b5f05e (diff)
downloadFreeBSD-src-55ba1a93b942a8056a8829883d191508e4a69dd6.zip
FreeBSD-src-55ba1a93b942a8056a8829883d191508e4a69dd6.tar.gz
Fix saving/restoring tty modes, allow initscr be called twice,
from ncurses 4.1
Diffstat (limited to 'lib/libncurses/lib_doupdate.c')
-rw-r--r--lib/libncurses/lib_doupdate.c32
1 files changed, 16 insertions, 16 deletions
diff --git a/lib/libncurses/lib_doupdate.c b/lib/libncurses/lib_doupdate.c
index 39c8b8f..cf7d284 100644
--- a/lib/libncurses/lib_doupdate.c
+++ b/lib/libncurses/lib_doupdate.c
@@ -119,6 +119,8 @@ sigaction_t act, oact;
if (SP->_endwin == TRUE) {
T(("coming back from shell mode"));
reset_prog_mode();
+ if (enter_ca_mode)
+ putp(enter_ca_mode);
/* is this necessary? */
if (enter_alt_charset_mode)
init_acs();
@@ -143,19 +145,17 @@ sigaction_t act, oact;
if (curscr->_clear) { /* force refresh ? */
T(("clearing and updating curscr"));
- ClrUpdate(curscr); /* yes, clear all & update */
+ ClrUpdate(newscr); /* yes, clear all & update */
curscr->_clear = FALSE; /* reset flag */
+ } else if (newscr->_clear) {
+ T(("clearing and updating newscr"));
+ ClrUpdate(newscr);
+ newscr->_clear = FALSE;
} else {
- if (newscr->_clear) {
- T(("clearing and updating newscr"));
- ClrUpdate(newscr);
- newscr->_clear = FALSE;
- } else {
- T(("Transforming lines"));
- for (i = 0; i < lines ; i++) {
- if(newscr->_firstchar[i] != _NOCHANGE)
- TransformLine(i);
- }
+ T(("Transforming lines"));
+ for (i = 0; i < lines ; i++) {
+ if(newscr->_firstchar[i] != _NOCHANGE)
+ TransformLine(i);
}
}
T(("marking screen as updated"));
@@ -213,8 +213,8 @@ int lastNonBlank;
}
T(("updating screen from scratch"));
- for (i = 0; i < lines; i++) {
- lastNonBlank = columns - 1;
+ for (i = 0; i < min(lines, scr->_maxy + 1); i++) {
+ lastNonBlank = scr->_maxx;
while (lastNonBlank >= 0 && scr->_line[i][lastNonBlank] == BLANK)
lastNonBlank--;
@@ -229,10 +229,9 @@ int lastNonBlank;
}
for (j = 0; j <= lastNonBlank; j++) {
- if (parm_right_cursor) {
- static int inspace = 0;
+ int inspace = 0;
- T(("trying to use parm_right_cursor"));
+ if (parm_right_cursor) {
if ((scr->_line[i][j]) == BLANK) {
inspace++;
continue;
@@ -241,6 +240,7 @@ int lastNonBlank;
for (; inspace > 0; inspace--)
PutChar(scr->_line[i][j-1]);
} else {
+ T(("trying to use parm_right_cursor"));
putp(tparm(parm_right_cursor, inspace));
SP->_curscol += inspace;
}
OpenPOWER on IntegriCloud