diff options
| author | Aurélien Aptel <aurelien.aptel@gmail.com> | 2012-02-08 16:45:52 +0100 |
|---|---|---|
| committer | Aurélien Aptel <aurelien.aptel@gmail.com> | 2012-02-08 16:45:52 +0100 |
| commit | cee6ccc6ee21fb6a4e4e04c2727aec26b7d47e07 (patch) | |
| tree | 946893130177329f98f784887d6752cebf15d16a | |
| parent | b6b90253b88f6787804c5ced60d48e37394512f2 (diff) | |
| download | st-cee6ccc6ee21fb6a4e4e04c2727aec26b7d47e07.tar.gz st-cee6ccc6ee21fb6a4e4e04c2727aec26b7d47e07.zip | |
reduce size of each glyph for faster copy.
| -rw-r--r-- | st.c | 8 |
1 files changed, 4 insertions, 4 deletions
| @@ -86,10 +86,10 @@ typedef unsigned long ulong; | |||
| 86 | 86 | ||
| 87 | typedef struct { | 87 | typedef struct { |
| 88 | char c[UTF_SIZ]; /* character code */ | 88 | char c[UTF_SIZ]; /* character code */ |
| 89 | char mode; /* attribute flags */ | 89 | uchar mode; /* attribute flags */ |
| 90 | int fg; /* foreground */ | 90 | uchar fg; /* foreground */ |
| 91 | int bg; /* background */ | 91 | uchar bg; /* background */ |
| 92 | char state; /* state flags */ | 92 | uchar state; /* state flags */ |
| 93 | } Glyph; | 93 | } Glyph; |
| 94 | 94 | ||
| 95 | typedef Glyph* Line; | 95 | typedef Glyph* Line; |
