X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/6473492058e854537bb061277bd9eb5c319bf11a..47489d8daef971352cfb1ec30c998ed7b048c97c:/terminal.h diff --git a/terminal.h b/terminal.h index 72c8f877..daadd708 100644 --- a/terminal.h +++ b/terminal.h @@ -171,6 +171,8 @@ struct terminal_tag { void *logctx; + struct unicode_data *ucsdata; + /* * We maintain a full _copy_ of a Config structure here, not * merely a pointer to it. That way, when we're passed a new @@ -181,6 +183,6 @@ struct terminal_tag { Config cfg; }; -#define in_utf(term) ((term)->utf || line_codepage==CP_UTF8) +#define in_utf(term) ((term)->utf || (term)->ucsdata->line_codepage==CP_UTF8) #endif