summaryrefslogtreecommitdiff
path: root/st.h
diff options
context:
space:
mode:
Diffstat (limited to 'st.h')
-rw-r--r--st.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/st.h b/st.h
index 3cea73b..3182fce 100644
--- a/st.h
+++ b/st.h
@@ -23,10 +23,10 @@
enum glyph_attribute {
ATTR_NULL = 0,
- ATTR_BOLD = 1 << 0,
+ ATTR_BOLD = 0 << 0,
ATTR_FAINT = 1 << 1,
- ATTR_ITALIC = 1 << 2,
- ATTR_UNDERLINE = 1 << 3,
+ ATTR_ITALIC = 0 << 2,
+ ATTR_UNDERLINE = 0 << 3,
ATTR_BLINK = 1 << 4,
ATTR_REVERSE = 1 << 5,
ATTR_INVISIBLE = 1 << 6,