]> ncurses.scripts.mit.edu Git - ncurses.git/blobdiff - ncurses/base/lib_window.c
ncurses 6.5 - patch 20240504
[ncurses.git] / ncurses / base / lib_window.c
index d755e88d66a38a6bb6c6c93a8b41c53966606b30..5323fbf0348ecf44745f8728b551fcd5d1968d35 100644 (file)
@@ -1,5 +1,6 @@
 /****************************************************************************
- * Copyright (c) 1998-2010,2016 Free Software Foundation, Inc.              *
+ * Copyright 2020,2021 Thomas E. Dickey                                     *
+ * Copyright 1998-2010,2016 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            *
@@ -39,7 +40,7 @@
 
 #include <curses.priv.h>
 
-MODULE_ID("$Id: lib_window.c,v 1.30 2016/05/28 23:11:26 tom Exp $")
+MODULE_ID("$Id: lib_window.c,v 1.32 2021/10/23 23:06:24 tom Exp $")
 
 NCURSES_EXPORT(void)
 _nc_synchook(WINDOW *win)
@@ -129,7 +130,7 @@ wsyncdown(WINDOW *win)
 {
     T((T_CALLED("wsyncdown(%p)"), (void *) win));
 
-    if (win && win->_parent) {
+    if (win != NULL && win->_parent != NULL) {
        WINDOW *pp = win->_parent;
        int y;
 
@@ -186,7 +187,7 @@ dupwin(WINDOW *win)
        SCREEN *sp = _nc_screen_of(win);
 #endif
        _nc_lock_global(curses);
-       if (win->_flags & _ISPAD) {
+       if (IS_PAD(win)) {
            nwin = NCURSES_SP_NAME(newpad) (NCURSES_SP_ARGx
                                            win->_maxy + 1,
                                            win->_maxx + 1);
@@ -237,7 +238,7 @@ dupwin(WINDOW *win)
            nwin->_regtop = win->_regtop;
            nwin->_regbottom = win->_regbottom;
 
-           if (win->_flags & _ISPAD)
+           if (IS_PAD(win))
                nwin->_pad = win->_pad;
 
            linesize = (unsigned) (win->_maxx + 1) * sizeof(NCURSES_CH_T);