diff options
Diffstat (limited to 'src/termchar.h')
-rw-r--r-- | src/termchar.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/termchar.h b/src/termchar.h index 9d7399e80d9..a58dbc62125 100644 --- a/src/termchar.h +++ b/src/termchar.h @@ -39,8 +39,16 @@ struct tty_output int term_initted; /* 1 if we have been through init_sys_modes. */ int old_tty_valid; /* 1 if outer tty status has been recorded. */ + + + /* Redisplay. */ + + /* XXX This may cause problems with GC. */ + Lisp_Object top_frame; /* The topmost frame on this tty. */ - + /* The previous terminal frame we displayed on this tty. */ + struct frame *previous_terminal_frame; + /* Pixel values. XXX What are these used for? */ |