Fix a few stylistic warnings from Apple's C compilers.
[u/mdw/putty] / terminal.h
index 4f6b6e7..b6b5a06 100644 (file)
@@ -155,6 +155,9 @@ struct terminal_tag {
 
     short wordness[256];
 
+    /* Mask of attributes to pay attention to when painting. */
+    unsigned long attr_mask;
+
     wchar_t *paste_buffer;
     int paste_len, paste_pos, paste_hold;
     long last_paste;
@@ -167,6 +170,8 @@ struct terminal_tag {
     void *frontend;
 
     void *logctx;
+
+    Config *cfg;
 };
 
 #define in_utf(term) ((term)->utf || line_codepage==CP_UTF8)