Differences From Artifact [f7c8ece55a]:
- File window.c — part of check-in [763c0e4547] at 1999-11-30 04:52:07 on branch trunk — Robert de Bath's multi-purpose patch, slightly modified. - ^E answerback is now `PuTTY'. - The framework is now in place for the scrollback to reset to bottom on display _or_ keyboard events _or_ both. An actual configurable option isn't yet present, but most of the code is in place. - Try to deal with the problems where incoming data gets dropped after decoding but before display. - Scrollback behaviour has changed: instead of keying it off `scroll' versus `delete top line', things now go into the scrollback from _either_ of those but only if the primary screen is selected. Should fix problems with `less' and talkers. - must_update variable has gone because rdb correctly observed that it didn't seem to be doing a great deal :-) (user: simon size: 47204)
To Artifact [9763ef29db]:
- File window.c — part of check-in [803bd71cfa] at 1999-11-30 05:22:30 on branch trunk — Turn #ifdef LOG into a command-line option for debugging use (user: simon size: 47351)
| ︙ | |||
125 126 127 128 129 130 131 132 133 134 135 136 137 138 | 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 | + + + + + |
p++;
if (q == p + 3 &&
tolower(p[0]) == 's' &&
tolower(p[1]) == 's' &&
tolower(p[2]) == 'h') {
default_protocol = cfg.protocol = PROT_SSH;
default_port = cfg.port = 22;
} else if (q == p + 3 &&
tolower(p[0]) == 'l' &&
tolower(p[1]) == 'o' &&
tolower(p[2]) == 'g') {
logfile = "putty.log";
}
p = q + strspn(q, " \t");
}
/*
* An initial @ means to activate a saved session.
*/
|
| ︙ |