X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/a832773496d46caa5e328d36a15b4918f24a804e..d6430b975d14ddbd53c40126fa9d00bea3c2d08b:/terminal.h diff --git a/terminal.h b/terminal.h index 4f6b6e72..b6b5a06f 100644 --- a/terminal.h +++ b/terminal.h @@ -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)