[BACK]Return to newwin.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / lib / libcurses

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/lib/libcurses/newwin.c between version 1.43.6.2 and 1.43.6.3

version 1.43.6.2, 2007/01/21 17:43:35 version 1.43.6.3, 2007/01/25 08:50:15
Line 154  __newwin(SCREEN *screen, int nlines, int
Line 154  __newwin(SCREEN *screen, int nlines, int
                 else                  else
                         lp->flags = 0;                          lp->flags = 0;
                 for (sp = lp->line, j = 0; j < maxx; j++, sp++) {                  for (sp = lp->line, j = 0; j < maxx; j++, sp++) {
                           sp->attr = 0;
 #ifndef HAVE_WCHAR  #ifndef HAVE_WCHAR
                         sp->ch = win->bch;                          sp->ch = win->bch;
 #else  #else
Line 161  __newwin(SCREEN *screen, int nlines, int
Line 162  __newwin(SCREEN *screen, int nlines, int
                         sp->nsp = NULL;                          sp->nsp = NULL;
                         SET_WCOL( *sp, 1 );                          SET_WCOL( *sp, 1 );
 #endif /* HAVE_WCHAR */  #endif /* HAVE_WCHAR */
                         sp->attr = 0;  
                 }                  }
                 lp->hash = __hash((char *)(void *)lp->line,                  lp->hash = __hash((char *)(void *)lp->line,
                     (size_t) (ncols * __LDATASIZE));                      (size_t) (ncols * __LDATASIZE));

Legend:
Removed from v.1.43.6.2  
changed lines
  Added in v.1.43.6.3

CVSweb <webmaster@jp.NetBSD.org>