Differences From Artifact [0825c71594]:
- File cmdline.c — part of check-in [5c4ededf67] at 2003-01-12 08:17:03 on branch trunk — The command-line routines now take a pointer to `cfg' as an argument, so they don't depend on it being a global any more. (user: simon size: 8352)
To Artifact [097722fc0d]:
- File cmdline.c — part of check-in [497dc397e7] at 2003-02-01 06:54:40 on branch trunk — Created new data types `Filename' and `FontSpec', intended to be opaque to all platform-independent modules and only handled within per-platform code. `Filename' is there because the Mac has a magic way to store filenames (though currently this checkin doesn't support it!); `FontSpec' is there so that all the auxiliary stuff such as font height and charset and so on which is needed under Windows but not Unix can be kept where it belongs, and so that I can have a hope in hell of dealing with a font chooser in the forthcoming cross-platform config box code, and best of all it gets the horrid font height wart out of settings.c and into the Windows code where it should be. The Mac part of this checkin is a bunch of random guesses which will probably not quite compile, but which look roughly right to me. Sorry if I screwed it up, Ben :-) (user: simon size: 8295)
| ︙ | |||
303 304 305 306 307 308 309 | 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 | - - + |
SAVEABLE(1);
cfg->sshprot = 3; /* ssh protocol 2 only */
}
if (!strcmp(p, "-i")) {
RETURN(2);
SAVEABLE(1);
|
| ︙ |