summaryrefslogtreecommitdiff
path: root/alacritty_terminal/src/term/cell.rs
diff options
context:
space:
mode:
authorChristian Duerr <contact@christianduerr.com>2019-09-21 19:54:32 +0200
committerGitHub <noreply@github.com>2019-09-21 19:54:32 +0200
commit856cddc8739c32d8bbfff72dd3692f49359142a9 (patch)
treee7428984c5fcd51cfccd7e78a864497bd87c8e60 /alacritty_terminal/src/term/cell.rs
parent71a818cb8fcc99d1d9176fca3b3386c6971a306a (diff)
downloadalacritty-856cddc8739c32d8bbfff72dd3692f49359142a9.tar.gz
alacritty-856cddc8739c32d8bbfff72dd3692f49359142a9.zip
Remove outdated TODO/FIXME comments
Diffstat (limited to 'alacritty_terminal/src/term/cell.rs')
-rw-r--r--alacritty_terminal/src/term/cell.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/alacritty_terminal/src/term/cell.rs b/alacritty_terminal/src/term/cell.rs
index 8d1b135c..7a759777 100644
--- a/alacritty_terminal/src/term/cell.rs
+++ b/alacritty_terminal/src/term/cell.rs
@@ -26,6 +26,7 @@ bitflags! {
const INVERSE = 0b00_0000_0001;
const BOLD = 0b00_0000_0010;
const ITALIC = 0b00_0000_0100;
+ const BOLD_ITALIC = 0b00_0000_0110;
const UNDERLINE = 0b00_0000_1000;
const WRAPLINE = 0b00_0001_0000;
const WIDE_CHAR = 0b00_0010_0000;