From 2e312fbe22279b88ee4ff36bd797d4c25f0d16c1 Mon Sep 17 00:00:00 2001 From: Elan Amir Date: Mon, 21 Sep 1992 22:23:50 -0800 Subject: [PATCH] Added __ISPASTEOL support. SCCS-vsn: lib/libcurses/move.c 5.8 --- usr/src/lib/libcurses/move.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/usr/src/lib/libcurses/move.c b/usr/src/lib/libcurses/move.c index a6715ce1da..9a69115762 100644 --- a/usr/src/lib/libcurses/move.c +++ b/usr/src/lib/libcurses/move.c @@ -6,7 +6,7 @@ */ #ifndef lint -static char sccsid[] = "@(#)move.c 5.7 (Berkeley) %G%"; +static char sccsid[] = "@(#)move.c 5.8 (Berkeley) %G%"; #endif /* not lint */ #include @@ -30,5 +30,6 @@ wmove(win, y, x) return (ERR); win->curx = x; win->cury = y; + win->lines[y]->flags &= ~__ISPASTEOL; return (OK); } -- 2.20.1