1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-09 17:38:00 +00:00

Add/tweak a couple of comments.

[originally from svn r6576]
This commit is contained in:
Jacob Nevins 2006-02-19 14:10:02 +00:00
parent 5e59d81947
commit 54741e1271
2 changed files with 7 additions and 4 deletions

View File

@ -70,8 +70,10 @@ typedef struct terminal_tag Terminal;
#define LATTR_TOP 0x00000002UL
#define LATTR_BOT 0x00000003UL
#define LATTR_MODE 0x00000003UL
#define LATTR_WRAPPED 0x00000010UL
#define LATTR_WRAPPED2 0x00000020UL
#define LATTR_WRAPPED 0x00000010UL /* this line wraps to next */
#define LATTR_WRAPPED2 0x00000020UL /* with WRAPPED: CJK wide character
wrapped to next line, so last
single-width cell is empty */
#define ATTR_INVALID 0x03FFFFU

View File

@ -79,8 +79,9 @@ struct terminal_tag {
tree234 *screen; /* lines on primary screen */
tree234 *alt_screen; /* lines on alternate screen */
int disptop; /* distance scrolled back (0 or -ve) */
int tempsblines; /* number of lines in temporary
scrollback */
int tempsblines; /* number of lines of .scrollback that
can be retrieved onto the terminal
("temporary scrollback") */
termline **disptext; /* buffer of text on real screen */
int dispcursx, dispcursy; /* location of cursor on real screen */