Optimize memory footprint of line buffers
This commit is contained in:
parent
0622ad9bad
commit
7ab6c92e18
1 changed files with 2 additions and 2 deletions
4
st.c
4
st.c
|
@ -183,8 +183,8 @@ typedef XftColor Color;
|
|||
typedef struct {
|
||||
long u; /* character code */
|
||||
ushort mode; /* attribute flags */
|
||||
uint32_t fg; /* foreground */
|
||||
uint32_t bg; /* background */
|
||||
ushort fg; /* foreground */
|
||||
ushort bg; /* background */
|
||||
} Glyph;
|
||||
|
||||
typedef Glyph *Line;
|
||||
|
|
Loading…
Reference in a new issue