pinosaur
/
st.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b6b9025
)
reduce size of each glyph for faster copy.
author
Aurélien Aptel
<aurelien.aptel@gmail.com>
Wed, 8 Feb 2012 15:45:52 +0000
(16:45 +0100)
committer
Aurélien Aptel
<aurelien.aptel@gmail.com>
Wed, 8 Feb 2012 15:45:52 +0000
(16:45 +0100)
st.c
patch
|
blob
|
history
diff --git
a/st.c
b/st.c
index
b1db093
..
98cd78a
100644
(file)
--- a/
st.c
+++ b/
st.c
@@
-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 */
+
u
char mode; /* attribute flags */
+
uchar
fg; /* foreground */
+
uchar
bg; /* background */
+
u
char state; /* state flags */
} Glyph;
typedef Glyph* Line;