X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=ncurses%2Fbase%2Flib_delwin.c;h=59fa3f772d2afb9e9cd5a6608bae881b09aad2b5;hp=3f612bf06d79050c3697c59cdd9badd0518c5f43;hb=26522e4669dbf45cba32138b5d81c6c292e88e60;hpb=b17ff3673e886e3cbb6b523341aa10b0c26b3903 diff --git a/ncurses/base/lib_delwin.c b/ncurses/base/lib_delwin.c index 3f612bf0..59fa3f77 100644 --- a/ncurses/base/lib_delwin.c +++ b/ncurses/base/lib_delwin.c @@ -1,5 +1,5 @@ /**************************************************************************** - * Copyright (c) 1998-2001,2007 Free Software Foundation, Inc. * + * Copyright (c) 1998-2008,2009 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 * @@ -29,6 +29,8 @@ /**************************************************************************** * Author: Zeyd M. Ben-Halim 1992,1995 * * and: Eric S. Raymond * + * and: Thomas E. Dickey 1996-on * + * and: Juergen Pfeifer 2008 * ****************************************************************************/ /* @@ -40,15 +42,18 @@ #include -MODULE_ID("$Id: lib_delwin.c,v 1.14 2007/10/20 21:51:07 tom Exp $") +MODULE_ID("$Id: lib_delwin.c,v 1.19 2009/05/23 19:56:55 tom Exp $") static bool cannot_delete(WINDOW *win) { WINDOWLIST *p; bool result = TRUE; +#ifdef USE_SP_WINDOWLIST + SCREEN *sp = _nc_screen_of(win); +#endif - for (p = _nc_windows; p != 0; p = p->next) { + for (each_window(SP_PARM, p)) { if (&(p->win) == win) { result = FALSE; } else if ((p->win._flags & _SUBWIN) != 0 @@ -67,19 +72,22 @@ delwin(WINDOW *win) T((T_CALLED("delwin(%p)"), win)); - _nc_lock_global(windowlist); - if (win == 0 - || cannot_delete(win)) { - result = ERR; - } else { + if (_nc_try_global(curses) == 0) { + if (win == 0 + || cannot_delete(win)) { + result = ERR; + } else { +#if NCURSES_SP_FUNCS + SCREEN *sp = _nc_screen_of(win); +#endif + if (win->_flags & _SUBWIN) + touchwin(win->_parent); + else if (CurScreen(SP_PARM) != 0) + touchwin(CurScreen(SP_PARM)); - if (win->_flags & _SUBWIN) - touchwin(win->_parent); - else if (curscr != 0) - touchwin(curscr); - - result = _nc_freewin(win); + result = _nc_freewin(win); + } + _nc_unlock_global(curses); } - _nc_unlock_global(windowlist); returnCode(result); }