diff options
author | Gerd Moellmann <gerd@gnu.org> | 2001-10-01 10:53:38 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2001-10-01 10:53:38 +0000 |
commit | 257e3f57f8635ef5cf772a69df8b74f78fef8a02 (patch) | |
tree | 445bee8e898d9052113fc71b921e08dd36c8bf85 /src/dispextern.h | |
parent | e74fb0f735d41ec3f5ad8f51898a5eafbaf09ef2 (diff) | |
download | emacs-257e3f57f8635ef5cf772a69df8b74f78fef8a02.tar.gz |
(struct glyph_row) <ends_in_newline_from_string_p>:
New bit flag
Diffstat (limited to 'src/dispextern.h')
-rw-r--r-- | src/dispextern.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/dispextern.h b/src/dispextern.h index fbb3bc9f247..95c2a919d5f 100644 --- a/src/dispextern.h +++ b/src/dispextern.h @@ -698,6 +698,9 @@ struct glyph_row /* 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; }; |