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

John Sullivan's patches plus more fixes:

- Stop using the identifier `environ' as some platforms make it a macro
  - Fix silly error box at end of connection in FWHACK mode
  - Fix GPF on maximise-then-restore
  - Use SetCapture to allow drag-selecting outside the window
  - Correctly update window title when iconic and in win_name_always mode

[originally from svn r12]
This commit is contained in:
Simon Tatham
1999-01-08 13:10:19 +00:00
parent c74130d423
commit 60ab6a5d82
8 changed files with 71 additions and 36 deletions

View File

@ -350,7 +350,7 @@ static void process_subneg (void) {
b[0] = IAC; b[1] = SB; b[2] = sb_opt;
b[3] = TELQUAL_IS;
n = 4;
e = cfg.environ;
e = cfg.environmt;
while (*e) {
b[n++] = var;
while (*e && *e != '\t') b[n++] = *e++;