diff options
Diffstat (limited to 'st.h')
| -rw-r--r-- | st.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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, |
