summaryrefslogtreecommitdiff
path: root/st.h
diff options
context:
space:
mode:
authoruint <abhinav.prsai@gmail.com>2025-12-22 13:09:34 +0000
committeruint <abhinav.prsai@gmail.com>2025-12-22 13:09:34 +0000
commit5b23cbceb21895ed21eb10202230d157aedef773 (patch)
treed08966e563db99533ebfc16e3625c95056966544 /st.h
parent99de1c3d272ba260c855afc09005f1391582d2a0 (diff)
add floating patchHEADmaster
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,