]> git.armaanb.net Git - st.git/blobdiff - st.c
merge
[st.git] / st.c
diff --git a/st.c b/st.c
index abaa7bf3bc205d224b307ec549ccded311bbe1d6..fca97ce883ea853ef6ce05b7a343b6d7fd78aa1a 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     */
+       uchar mode;  /* attribute flags */
+       uchar fg;     /* foreground      */
+       uchar bg;     /* background      */
+       uchar state; /* state flags     */
 } Glyph;
 
 typedef Glyph* Line;