]> ncurses.scripts.mit.edu Git - ncurses.git/blobdiff - ncurses/base/lib_clreol.c
ncurses 6.3 - patch 20211030
[ncurses.git] / ncurses / base / lib_clreol.c
index 7aff84b35a426884acdc6f4cc510e82afe745546..0b6b0ff8f7de6f3067d8dc633c09df7c0a29d9d4 100644 (file)
@@ -1,5 +1,6 @@
 /****************************************************************************
- * Copyright (c) 1998-2001,2009 Free Software Foundation, Inc.              *
+ * Copyright 2020,2021 Thomas E. Dickey                                     *
+ * Copyright 1998-2001,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            *
@@ -40,7 +41,7 @@
 
 #include <curses.priv.h>
 
-MODULE_ID("$Id: lib_clreol.c,v 1.22 2009/10/24 22:33:06 tom Exp $")
+MODULE_ID("$Id: lib_clreol.c,v 1.24 2021/10/23 19:06:01 tom Exp $")
 
 NCURSES_EXPORT(int)
 wclrtoeol(WINDOW *win)
@@ -60,7 +61,7 @@ wclrtoeol(WINDOW *win)
         * If we have just wrapped the cursor, the clear applies to the
         * new line, unless we are at the lower right corner.
         */
-       if ((win->_flags & _WRAPPED) != 0
+       if (IS_WRAPPED(win) != 0
            && y < win->_maxy) {
            win->_flags &= ~_WRAPPED;
        }
@@ -69,7 +70,7 @@ wclrtoeol(WINDOW *win)
         * There's no point in clearing if we're not on a legal
         * position, either.
         */
-       if ((win->_flags & _WRAPPED) != 0
+       if (IS_WRAPPED(win)
            || y > win->_maxy
            || x > win->_maxx)
            returnCode(ERR);