1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-04-20 12:38:06 -05:00

And another bit missing from the settings changes: pterm's platform

default for CloseOnExit was encoded wrongly. Hopefully this should
be everything now; I'm really starting to get sick of picking up the
pieces after my two checkins yesterday. Perhaps I should have waited
until I had a brain before doing them in the first place.

[originally from svn r2746]
This commit is contained in:
Simon Tatham 2003-01-28 12:06:37 +00:00
parent 8a85ff03c4
commit 52882fa006

View File

@ -98,7 +98,7 @@ char *platform_default_s(const char *name)
int platform_default_i(const char *name, int def) int platform_default_i(const char *name, int def)
{ {
if (!strcmp(name, "CloseOnExit")) if (!strcmp(name, "CloseOnExit"))
return FORCE_ON; /* AUTO works badly in an xterm */ return 2; /* maps to FORCE_ON after painful rearrangement :-( */
return def; return def;
} }