diff options
| author | uint <abhinav.prsai@gmail.com> | 2025-12-22 13:09:34 +0000 |
|---|---|---|
| committer | uint <abhinav.prsai@gmail.com> | 2025-12-22 13:09:34 +0000 |
| commit | 5b23cbceb21895ed21eb10202230d157aedef773 (patch) | |
| tree | d08966e563db99533ebfc16e3625c95056966544 /st.h | |
| parent | 99de1c3d272ba260c855afc09005f1391582d2a0 (diff) | |
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, |
