diff options
author | Peter Wemm <peter@FreeBSD.org> | 2002-05-21 05:30:25 +0000 |
---|---|---|
committer | Peter Wemm <peter@FreeBSD.org> | 2002-05-21 05:30:25 +0000 |
commit | 39f2269fcb4873fd97d70af944ec49f4230fadea (patch) | |
tree | bd986d58f5a6e348466b5362637ba93e6cd5bf8c /contrib/ncurses/panel/panel.priv.h | |
parent | 7e6a63408cfb0b48f0e41f77ed82f5d0ca60bda5 (diff) | |
download | src-39f2269fcb4873fd97d70af944ec49f4230fadea.tar.gz src-39f2269fcb4873fd97d70af944ec49f4230fadea.zip |
Import ncurses-5.2-20020518 onto the vendor branch.
Obtained from: ftp://dickey.his.com/ncurses/
Notes
Notes:
svn path=/vendor/ncurses/dist/; revision=97049
Diffstat (limited to 'contrib/ncurses/panel/panel.priv.h')
-rw-r--r-- | contrib/ncurses/panel/panel.priv.h | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/contrib/ncurses/panel/panel.priv.h b/contrib/ncurses/panel/panel.priv.h index d029b1212c83..7097d8423cf5 100644 --- a/contrib/ncurses/panel/panel.priv.h +++ b/contrib/ncurses/panel/panel.priv.h @@ -26,7 +26,7 @@ * authorization. * ****************************************************************************/ -/* $Id: panel.priv.h,v 1.18 2001/03/24 21:38:45 tom Exp $ */ +/* $Id: panel.priv.h,v 1.19 2001/06/02 23:31:05 tom Exp $ */ #ifndef NCURSES_PANEL_PRIV_H #define NCURSES_PANEL_PRIV_H 1 @@ -47,6 +47,7 @@ # include <dbmalloc.h> /* Conor Cahill's library */ #endif +#include "curses.priv.h" #include "panel.h" #include <nc_panel.h> @@ -101,15 +102,6 @@ #define Is_Top(p) (((p)!=(PANEL*)0) && !EMPTY_STACK() && (_nc_top_panel==(p))) #define Is_Pseudo(p) ((p) && ((p)==_nc_bottom_panel)) -/* borrowed from curses.priv.h */ -#define CHANGED_RANGE(line,start,end) \ - if (line->firstchar == _NOCHANGE \ - || line->firstchar > (start)) \ - line->firstchar = start; \ - if (line->lastchar == _NOCHANGE \ - || line->lastchar < (end)) \ - line->lastchar = end - /*+------------------------------------------------------------------------- IS_LINKED(pan) - check to see if panel is in the stack --------------------------------------------------------------------------*/ |