1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-10 01:48:00 +00:00

Temporarily change the default for cut-and-paste of line drawing

characters, under Unix only, because the stub Unicode layer makes
the usual default break moderately painfully.

[originally from svn r2087]
This commit is contained in:
Simon Tatham 2002-10-16 16:32:17 +00:00
parent ac3d4e70ad
commit 9b1e27716a

View File

@ -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);