1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-06-30 19:12:48 -05:00

Line discipline module now uses dynamically allocated data. Also

fixed one or two other minor problems.

[originally from svn r2141]
This commit is contained in:
Simon Tatham
2002-10-26 10:16:19 +00:00
parent ba0468b983
commit 0b2523eeda
16 changed files with 326 additions and 204 deletions

View File

@ -94,6 +94,7 @@ struct terminal_tag {
long last_tblink;
int xterm_mouse; /* send mouse messages to app */
int mouse_is_down; /* used while tracking mouse buttons */
unsigned long cset_attr[2];
@ -160,6 +161,8 @@ struct terminal_tag {
void (*resize_fn)(void *, int, int);
void *resize_ctx;
void *ldisc;
};
#define in_utf(term) ((term)->utf || line_codepage==CP_UTF8)