mirror of
https://github.com/irssi/irssi.git
synced 2026-08-09 03:40:16 +02:00
add italics support; don't use standout for reverse
This commit is contained in:
parent
fc00b9e6f0
commit
0e294d5c2e
12 changed files with 98 additions and 20 deletions
|
|
@ -143,6 +143,9 @@ static void update_cmd_color(unsigned char cmd, int *color)
|
|||
case LINE_CMD_BOLD:
|
||||
*color ^= ATTR_BOLD;
|
||||
break;
|
||||
case LINE_CMD_ITALIC:
|
||||
*color ^= ATTR_ITALIC;
|
||||
break;
|
||||
case LINE_CMD_COLOR0:
|
||||
*color &= BGATTR;
|
||||
*color &= ~ATTR_FGCOLOR24;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue