ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/rxvtlib.h.in
(Generate patch)

Comparing rxvt-unicode/src/rxvtlib.h.in (file contents):
Revision 1.49 by root, Sun Dec 18 00:59:42 2005 UTC vs.
Revision 1.50 by root, Mon Dec 19 02:40:14 2005 UTC

86struct line_t { 86struct line_t {
87 text_t *t; // terminal the text 87 text_t *t; // terminal the text
88 rend_t *r; // rendition, uses RS_ flags 88 rend_t *r; // rendition, uses RS_ flags
89 tlen_t l; // length of each text line, LINE_CONT == continued on next line 89 tlen_t l; // length of each text line, LINE_CONT == continued on next line
90 90
91 bool is_cont () 91 bool is_longer ()
92 { 92 {
93 return l < 0; 93 return l < 0;
94 }
95
96 void set_is_longer ()
97 {
98 l = LINE_CONT;
94 } 99 }
95 100
96 void clear () 101 void clear ()
97 { 102 {
98 t = 0; 103 t = 0;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines