1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-04 19:10:37 -08:00

(struct glyph_row) <ends_in_newline_from_string_p>:

New bit flag
This commit is contained in:
Gerd Moellmann 2001-10-01 10:53:38 +00:00
parent e74fb0f735
commit 257e3f57f8
2 changed files with 12 additions and 0 deletions

View file

@ -1,3 +1,12 @@
2001-10-01 Gerd Moellmann <gerd@gnu.org>
* xdisp.c (display_line): Set row's ends_in_newline_from_string_p.
(try_window_id): Skip back over lines ending in a newline from a
string.
* dispextern.h (struct glyph_row) <ends_in_newline_from_string_p>:
New bit flag
2001-10-01 Richard M. Stallman <rms@gnu.org>
* search.c (Freplace_match): Doc fix.

View file

@ -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;
};