Optimize memory footprint of line buffers

This commit is contained in:
suigin 2015-04-27 10:04:04 +02:00 committed by Roberto E. Vargas Caballero
parent 0622ad9bad
commit 7ab6c92e18
1 changed files with 2 additions and 2 deletions

4
st.c
View File

@ -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;