diff options
| author | jdc <jdc@NetBSD.org> | 2003-07-05 19:03:32 +0000 |
|---|---|---|
| committer | jdc <jdc@NetBSD.org> | 2003-07-05 19:03:32 +0000 |
| commit | 24b8aeb15a1dc4fe1c91cd610af6249b66a59dfd (patch) | |
| tree | 663c2151e39d36e1d2bad05c4f133447b3957a9b /lib/libcurses | |
| parent | 6615ddefa96c216d0ef53193e6aeaffc16fc1294 (diff) | |
New sub-windows should not be marked as pads.
(Also noticed by David Laight.)
Diffstat (limited to 'lib/libcurses')
| -rw-r--r-- | lib/libcurses/newwin.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libcurses/newwin.c b/lib/libcurses/newwin.c index e63654e5eee..98dc341cabc 100644 --- a/lib/libcurses/newwin.c +++ b/lib/libcurses/newwin.c @@ -1,4 +1,4 @@ -/* $NetBSD: newwin.c,v 1.37 2003/06/26 17:13:55 dsl Exp $ */ +/* $NetBSD: newwin.c,v 1.38 2003/07/05 19:03:32 jdc Exp $ */ /* * Copyright (c) 1981, 1993, 1994 @@ -38,7 +38,7 @@ #if 0 static char sccsid[] = "@(#)newwin.c 8.3 (Berkeley) 7/27/94"; #else -__RCSID("$NetBSD: newwin.c,v 1.37 2003/06/26 17:13:55 dsl Exp $"); +__RCSID("$NetBSD: newwin.c,v 1.38 2003/07/05 19:03:32 jdc Exp $"); #endif #endif /* not lint */ @@ -172,7 +172,7 @@ WINDOW * subwin(WINDOW *orig, int nlines, int ncols, int by, int bx) { - return __subwin(orig, nlines, ncols, by, bx, TRUE); + return __subwin(orig, nlines, ncols, by, bx, FALSE); } WINDOW * |
