Browse Source

Optimize memory footprint of line buffers

master
suigin 9 years ago
committed by Roberto E. Vargas Caballero
parent
commit
7ab6c92e18
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      st.c

+ 2
- 2
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;


Loading…
Cancel
Save