comparison src/dispextern.h @ 39521:477edfe737e3

(struct glyph_row) <ends_in_newline_from_string_p>: New bit flag
author Gerd Moellmann <gerd@gnu.org>
date Mon, 01 Oct 2001 10:53:18 +0000
parents 97363868cbb1
children 0d68fc35e9ad
comparison
equal deleted inserted replaced
39520:199991f52caf 39521:477edfe737e3
695 /* 1 in a current row means this row overlaps others. */ 695 /* 1 in a current row means this row overlaps others. */
696 unsigned overlapping_p : 1; 696 unsigned overlapping_p : 1;
697 697
698 /* 1 means some glyphs in this row are displayed in mouse-face. */ 698 /* 1 means some glyphs in this row are displayed in mouse-face. */
699 unsigned mouse_face_p : 1; 699 unsigned mouse_face_p : 1;
700
701 /* 1 means this row was ended by a newline from a string. */
702 unsigned ends_in_newline_from_string_p : 1;
700 703
701 /* Continuation lines width at the start of the row. */ 704 /* Continuation lines width at the start of the row. */
702 int continuation_lines_width; 705 int continuation_lines_width;
703 }; 706 };
704 707