diff options
| author | Gerd Moellmann | 2001-10-01 10:53:38 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2001-10-01 10:53:38 +0000 |
| commit | 257e3f57f8635ef5cf772a69df8b74f78fef8a02 (patch) | |
| tree | 445bee8e898d9052113fc71b921e08dd36c8bf85 /src/dispextern.h | |
| parent | e74fb0f735d41ec3f5ad8f51898a5eafbaf09ef2 (diff) | |
| download | emacs-257e3f57f8635ef5cf772a69df8b74f78fef8a02.tar.gz emacs-257e3f57f8635ef5cf772a69df8b74f78fef8a02.zip | |
(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 | |||
| 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 | 700 | ||
| 701 | /* 1 means this row was ended by a newline from a string. */ | ||
| 702 | unsigned ends_in_newline_from_string_p : 1; | ||
| 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 | }; |