diff options
author | stefan <stefan@s00.xyz> | 2023-04-14 19:50:19 -0400 |
---|---|---|
committer | stefan <stefan@s00.xyz> | 2023-04-14 19:50:19 -0400 |
commit | ea4d4ad4ef0eae8f78d9e38bc3dc3145edded12a (patch) | |
tree | 46b1b637ba4b379064464fe2f23fa101fd281e8e /st.h.rej | |
parent | 211964d56ee00a7d46e251cbc150afb79138ae37 (diff) | |
download | st-ea4d4ad4ef0eae8f78d9e38bc3dc3145edded12a.tar.gz |
initial commit
Diffstat (limited to 'st.h.rej')
-rw-r--r-- | st.h.rej | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/st.h.rej b/st.h.rej new file mode 100644 index 0000000..cbb0d9b --- /dev/null +++ b/st.h.rej @@ -0,0 +1,33 @@ +--- st.h ++++ st.h +@@ -22,17 +22,19 @@ + + enum glyph_attribute { + ATTR_NULL = 0, +- ATTR_BOLD = 1 << 0, +- ATTR_FAINT = 1 << 1, +- ATTR_ITALIC = 1 << 2, +- ATTR_UNDERLINE = 1 << 3, +- ATTR_BLINK = 1 << 4, +- ATTR_REVERSE = 1 << 5, +- ATTR_INVISIBLE = 1 << 6, +- ATTR_STRUCK = 1 << 7, +- ATTR_WRAP = 1 << 8, +- ATTR_WIDE = 1 << 9, +- ATTR_WDUMMY = 1 << 10, ++ ATTR_SET = 1 << 0, ++ ATTR_BOLD = 1 << 1, ++ ATTR_FAINT = 1 << 2, ++ ATTR_ITALIC = 1 << 3, ++ ATTR_UNDERLINE = 1 << 4, ++ ATTR_BLINK = 1 << 5, ++ ATTR_REVERSE = 1 << 6, ++ ATTR_INVISIBLE = 1 << 7, ++ ATTR_STRUCK = 1 << 8, ++ ATTR_WRAP = 1 << 9, ++ ATTR_WIDE = 1 << 10, ++ ATTR_WDUMMY = 1 << 11, ++ ATTR_SELECTED = 1 << 12, + ATTR_BOLD_FAINT = ATTR_BOLD | ATTR_FAINT, + }; + |