treduce size of each glyph for faster copy. - st - [fork] customized build of st, the simple terminal
HTML git clone git://src.adamsgaard.dk/st
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
DIR commit cee6ccc6ee21fb6a4e4e04c2727aec26b7d47e07
DIR parent b6b90253b88f6787804c5ced60d48e37394512f2
HTML Author: Aurélien Aptel <aurelien.aptel@gmail.com>
Date: Wed, 8 Feb 2012 16:45:52 +0100
reduce size of each glyph for faster copy.
Diffstat:
M st.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
---
DIR diff --git a/st.c b/st.c
t@@ -86,10 +86,10 @@ typedef unsigned long ulong;
typedef struct {
char c[UTF_SIZ]; /* character code */
- char mode; /* attribute flags */
- int fg; /* foreground */
- int bg; /* background */
- char state; /* state flags */
+ uchar mode; /* attribute flags */
+ uchar fg; /* foreground */
+ uchar bg; /* background */
+ uchar state; /* state flags */
} Glyph;
typedef Glyph* Line;