From: Aurélien Aptel Date: Mon, 13 Feb 2012 00:01:41 +0000 (+0100) Subject: merge X-Git-Url: https://git.danieliu.xyz/?a=commitdiff_plain;h=6de1ba6e7437919a137dfc5b925f5504085f4311;hp=b11e22df7d965fb5dff0954623e55093b50d3a62;p=st.git merge --- diff --git a/st.c b/st.c index abaa7bf..fca97ce 100644 --- 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 */ + uchar mode; /* attribute flags */ + uchar fg; /* foreground */ + uchar bg; /* background */ + uchar state; /* state flags */ } Glyph; typedef Glyph* Line;