1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-01 11:32:48 -05:00

Support frontend_is_utf8() in all front ends.

Previously only Unix front ends bothered to include it, on the basis
that only the pty backend needed it (to set IUTF8 in the pty). We're
about to need it everywhere else too.
This commit is contained in:
Simon Tatham
2016-05-03 08:43:09 +01:00
parent 2ce0b680cf
commit 2a73676490
2 changed files with 6 additions and 0 deletions

View File

@ -229,6 +229,11 @@ void frontend_echoedit_update(void *frontend, int echo, int edit)
{
}
int frontend_is_utf8(void *frontend)
{
return ucsdata.line_codepage == CP_UTF8;
}
char *get_ttymode(void *frontend, const char *mode)
{
return term_get_ttymode(term, mode);