Commit 7ab6c92

suigin <suigin@national.shitposting.agency>
2015-04-27 04:04:04
Optimize memory footprint of line buffers
1 parent 0622ad9
Changed files (1)
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;