summaryrefslogtreecommitdiffstats
path: root/contrib/ncurses/ncurses/base/lib_erase.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/ncurses/ncurses/base/lib_erase.c')
-rw-r--r--contrib/ncurses/ncurses/base/lib_erase.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/contrib/ncurses/ncurses/base/lib_erase.c b/contrib/ncurses/ncurses/base/lib_erase.c
index 87673b7..5e39731 100644
--- a/contrib/ncurses/ncurses/base/lib_erase.c
+++ b/contrib/ncurses/ncurses/base/lib_erase.c
@@ -1,5 +1,5 @@
/****************************************************************************
- * Copyright (c) 1998,2000 Free Software Foundation, Inc. *
+ * Copyright (c) 1998,2000,2001 Free Software Foundation, Inc. *
* *
* Permission is hereby granted, free of charge, to any person obtaining a *
* copy of this software and associated documentation files (the *
@@ -40,20 +40,20 @@
#include <curses.priv.h>
-MODULE_ID("$Id: lib_erase.c,v 1.13 2000/12/10 02:43:27 tom Exp $")
+MODULE_ID("$Id: lib_erase.c,v 1.15 2001/12/19 01:06:13 tom Exp $")
NCURSES_EXPORT(int)
werase(WINDOW *win)
{
int code = ERR;
int y;
- chtype blank;
- chtype *sp, *end, *start;
+ NCURSES_CH_T blank;
+ NCURSES_CH_T *sp, *end, *start;
T((T_CALLED("werase(%p)"), win));
if (win) {
- blank = _nc_background(win);
+ blank = win->_nc_bkgd;
for (y = 0; y <= win->_maxy; y++) {
start = win->_line[y].text;
end = &start[win->_maxx];
OpenPOWER on IntegriCloud