X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=menu%2Fm_post.c;h=2cc0ea09d5feb5c0445b93416f5e76355686e692;hp=bfe6ebb3cbd3114d2dc2a7a299aa494de9965d5c;hb=f44733b760290aa8f51c6c9e1e463254833bffcd;hpb=ba39fbc2e0cee4681395df4079d9e61c27262132 diff --git a/menu/m_post.c b/menu/m_post.c index bfe6ebb3..2cc0ea09 100644 --- a/menu/m_post.c +++ b/menu/m_post.c @@ -1,5 +1,6 @@ /**************************************************************************** - * Copyright (c) 1998-2010,2012 Free Software Foundation, Inc. * + * Copyright 2020 Thomas E. Dickey * + * Copyright 1998-2010,2012 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 * @@ -37,7 +38,7 @@ #include "menu.priv.h" -MODULE_ID("$Id: m_post.c,v 1.30 2012/03/10 23:43:41 tom Exp $") +MODULE_ID("$Id: m_post.c,v 1.32 2020/02/02 23:34:34 tom Exp $") /*--------------------------------------------------------------------------- | Facility : libnmenu @@ -305,7 +306,7 @@ post_menu(MENU * menu) else RETURN(E_NOT_CONNECTED); - menu->status |= _POSTED; + SetStatus(menu, _POSTED); if (!(menu->opt & O_ONEVALUE)) { @@ -369,7 +370,7 @@ unpost_menu(MENU * menu) delwin(menu->win); menu->win = (WINDOW *)0; - menu->status &= (unsigned short)(~_POSTED); + ClrStatus(menu, _POSTED); RETURN(E_OK); }