summaryrefslogtreecommitdiff
path: root/src/dispextern.h
diff options
context:
space:
mode:
authorGerd Moellmann <gerd@gnu.org>2001-10-01 10:53:38 +0000
committerGerd Moellmann <gerd@gnu.org>2001-10-01 10:53:38 +0000
commit257e3f57f8635ef5cf772a69df8b74f78fef8a02 (patch)
tree445bee8e898d9052113fc71b921e08dd36c8bf85 /src/dispextern.h
parente74fb0f735d41ec3f5ad8f51898a5eafbaf09ef2 (diff)
downloademacs-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.h3
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;
};