--- rxvt-2.7.3/src/command.c.orig Tue May 2 00:22:21 2000 +++ rxvt-2.7.3/src/command.c Fri May 19 18:12:25 2000 @@ -2326,6 +2326,36 @@ case 49: /* default bg */ scr_color(restoreBG, RS_Blink); break; + +#ifndef NO_BRIGHTCOLOR + case 90: + case 91: /* set bright fg color */ + case 92: + case 93: + case 94: + case 95: + case 96: + case 97: + scr_color(minBrightCOLOR + (arg[i] - 90), RS_Bold); + break; + case 99: /* default fg */ + scr_color(restoreFG, RS_Bold); + break; + + case 100: + case 101: /* set bright bg color */ + case 102: + case 103: + case 104: + case 105: + case 106: + case 107: + scr_color(minBrightCOLOR + (arg[i] - 100), RS_Blink); + break; + case 109: /* default bg */ + scr_color(restoreBG, RS_Blink); + break; +#endif } } /*}}} */