Xinqi Bao's Git
projects
/
st.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
raw
| inline |
side by side
Revert "Optimize memory footprint of line buffers"
[st.git]
/
st.c
diff --git
a/st.c
b/st.c
index
3460a37
..
3dd5caf
100644
(file)
--- a/
st.c
+++ b/
st.c
@@
-191,8
+191,8
@@
typedef XftColor Color;
typedef struct {
Rune u; /* character code */
ushort mode; /* attribute flags */
- u
short fg;
/* foreground */
- u
short bg;
/* background */
+ u
int32_t fg;
/* foreground */
+ u
int32_t bg;
/* background */
} Glyph;
typedef Glyph *Line;