1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-02 03:52:49 -05:00

Fixes to direct-to-font mode: I'd inadvertently enabled it for any

font whose encoding comes up as CS_NONE - but this is also true for
iso10646-1 fonts, since libcharset doesn't support wide-character
encodings! Hence UTF-8 cut and paste was enabled in ordinary modes,
but disabled in UTF-8 mode, which was a bit embarrassing. Now we
have a dedicated flag variable indicating direct-to-font mode.

[originally from svn r2425]
This commit is contained in:
Simon Tatham
2003-01-02 16:17:56 +00:00
parent 70458d6434
commit ea5be2db38
3 changed files with 36 additions and 14 deletions

View File

@ -69,6 +69,6 @@ void (*putty_signal(int sig, void (*func)(int)))(int);
/*
* Exports from unicode.c.
*/
void init_ucs(int font_charset);
int init_ucs(int font_charset);
#endif