X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/8e20db058dd2c1bdb376961e7a0c18343ebd1f3b..8eba7d3dede44be9bbb775feab8002724cb1c990:/settings.c diff --git a/settings.c b/settings.c index 5b293cec..0d7123ab 100644 --- a/settings.c +++ b/settings.c @@ -510,7 +510,16 @@ void load_settings(char *section, int do_host, Config * cfg) cfg->colours[i][2] = c2; } } +#ifndef _WINDOWS + /* Non-raw cut and paste of line-drawing chars works badly on the + * current Unix stub implementation of the Unicode functions. + * So I'm going to temporarily set the default to raw mode so + * that the failure mode isn't quite so drastically horrid. + * When Unicode comes in, this can all be put right. */ + gppi(sesskey, "RawCNP", 1, &cfg->rawcnp); +#else gppi(sesskey, "RawCNP", 0, &cfg->rawcnp); +#endif gppi(sesskey, "PasteRTF", 0, &cfg->rtf_paste); gppi(sesskey, "MouseIsXterm", 0, &cfg->mouse_is_xterm); gppi(sesskey, "RectSelect", 0, &cfg->rect_select);