Browse Source

* Fixed bold support in ANSI loader.

tags/v0.99.beta14
Sam Hocevar sam 18 years ago
parent
commit
bdfd1a250d
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      cucul/import.c

+ 4
- 0
cucul/import.c View File

@@ -399,6 +399,10 @@ void _manage_modifiers(char c, int *fg, int *bg, int *save_fg, int *save_bg)
*bg = CUCUL_COLOR_DEFAULT;
break;
case 1: // BOLD
if(*fg < 8)
*fg += 8;
if(*bg < 8)
*bg += 8;
break;
case 4: // Underline
break;


Loading…
Cancel
Save