Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 26547
Collapse All | Expand All

(-)Eterm-0.9.2-orig/src/screen.c (-5 lines)
Lines 488-498 Link Here
488
#ifndef NO_BRIGHTCOLOR
488
#ifndef NO_BRIGHTCOLOR
489
            if ((rstyle & Intensity) && color >= minColor && color <= maxColor)
489
            if ((rstyle & Intensity) && color >= minColor && color <= maxColor)
490
                color += (minBright - minColor);
490
                color += (minBright - minColor);
491
            else if (color >= minBright && color <= maxBright) {
492
                if (rstyle & Intensity)
493
                    return;
494
                color -= (minBright - minColor);
495
            }
496
#endif
491
#endif
497
        }
492
        }
498
    }
493
    }
(-)Eterm-0.9.2-orig/src/term.c (+29 lines)
Lines 1646-1651 Link Here
1646
          case 49:             /* default bg */
1646
          case 49:             /* default bg */
1647
              scr_color(restoreBG, RS_Blink);
1647
              scr_color(restoreBG, RS_Blink);
1648
              break;
1648
              break;
1649
1650
	  case 90:
1651
	  case 91:		/* set fg color - bright */
1652
	  case 92:
1653
	  case 93:
1654
	  case 94:
1655
	  case 95:
1656
	  case 96:
1657
	  case 97:
1658
	      scr_color(minBright + (arg[i] - 90), RS_Bold);
1659
	      break;
1660
          case 99:             /* default fg */
1661
              scr_color(restoreFG, RS_Bold);
1662
              break;
1663
1664
          case 100:
1665
          case 101:             /* set bg color - bright*/
1666
          case 102:
1667
          case 103:
1668
          case 104:
1669
          case 105:
1670
          case 106:
1671
          case 107:
1672
              scr_color(minBright + (arg[i] - 100), RS_Blink);
1673
              break;
1674
          case 109:             /* default bg */
1675
              scr_color(restoreBG, RS_Blink);
1676
              break;
1677
1649
        }
1678
        }
1650
}
1679
}
1651
1680

Return to bug 26547