X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=ncurses%2Fbase%2Flib_color.c;h=492194babbfbb7de35b1204bbb20737bb487667c;hp=71bee42487cd9c19ae0cfe102b92af1aba4f8a78;hb=refs%2Ftags%2Fv5.2;hpb=b1f61d9f3aa244512045a6b02e759825d7049d34 diff --git a/ncurses/base/lib_color.c b/ncurses/base/lib_color.c index 71bee424..492194ba 100644 --- a/ncurses/base/lib_color.c +++ b/ncurses/base/lib_color.c @@ -41,7 +41,7 @@ #include #include -MODULE_ID("$Id: lib_color.c,v 1.51 2000/05/20 20:09:22 tom Exp $") +MODULE_ID("$Id: lib_color.c,v 1.53 2000/09/02 18:02:15 tom Exp $") /* * These should be screen structure members. They need to be globals for @@ -85,7 +85,7 @@ static const color_t hls_palette[] = }; /* *INDENT-ON* */ -#ifdef NCURSES_EXT_FUNCS +#if NCURSES_EXT_FUNCS /* * These are called from _nc_do_color(), which in turn is called from * vidattr - so we have to assume that SP may be null. @@ -265,7 +265,7 @@ init_pair(short pair, short f, short b) if ((pair < 0) || (pair >= COLOR_PAIRS)) returnCode(ERR); -#ifdef NCURSES_EXT_FUNCS +#if NCURSES_EXT_FUNCS if (SP->_default_color) { if (f < 0) f = C_MASK; @@ -438,7 +438,7 @@ _nc_do_color(int old_pair, int pair, bool reverse, int (*outc) (int)) pair_content(old_pair, &old_fg, &old_bg); if ((fg == C_MASK && old_fg != C_MASK) || (bg == C_MASK && old_bg != C_MASK)) { -#ifdef NCURSES_EXT_FUNCS +#if NCURSES_EXT_FUNCS /* * A minor optimization - but extension. If "AX" is specified in * the terminal description, treat it as screen's indicator of ECMA @@ -458,7 +458,7 @@ _nc_do_color(int old_pair, int pair, bool reverse, int (*outc) (int)) return; } -#ifdef NCURSES_EXT_FUNCS +#if NCURSES_EXT_FUNCS if (fg == C_MASK) fg = default_fg(); if (bg == C_MASK) @@ -471,7 +471,7 @@ _nc_do_color(int old_pair, int pair, bool reverse, int (*outc) (int)) bg = xx; } - T(("setting colors: pair = %d, fg = %d, bg = %d", pair, fg, bg)); + TR(TRACE_ATTRS, ("setting colors: pair = %d, fg = %d, bg = %d", pair, fg, bg)); if (fg != C_MASK) { set_foreground_color(fg, outc);