# HG changeset patch # User Gerd Moellmann # Date 1001933598 0 # Node ID 477edfe737e38d94b6505af9df9e610c44e89f9a # Parent 199991f52cafee7c65c8d35cb0d5737a1bbb5189 (struct glyph_row) : New bit flag diff -r 199991f52caf -r 477edfe737e3 src/dispextern.h --- a/src/dispextern.h Mon Oct 01 10:52:55 2001 +0000 +++ b/src/dispextern.h Mon Oct 01 10:53:18 2001 +0000 @@ -698,6 +698,9 @@ /* 1 means some glyphs in this row are displayed in mouse-face. */ unsigned mouse_face_p : 1; + /* 1 means this row was ended by a newline from a string. */ + unsigned ends_in_newline_from_string_p : 1; + /* Continuation lines width at the start of the row. */ int continuation_lines_width; };