aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog9
-rw-r--r--src/dispextern.h3
2 files changed, 12 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index cdb855bdc8e..69693222363 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,12 @@
12001-10-01 Gerd Moellmann <gerd@gnu.org>
2
3 * xdisp.c (display_line): Set row's ends_in_newline_from_string_p.
4 (try_window_id): Skip back over lines ending in a newline from a
5 string.
6
7 * dispextern.h (struct glyph_row) <ends_in_newline_from_string_p>:
8 New bit flag
9
12001-10-01 Richard M. Stallman <rms@gnu.org> 102001-10-01 Richard M. Stallman <rms@gnu.org>
2 11
3 * search.c (Freplace_match): Doc fix. 12 * search.c (Freplace_match): Doc fix.
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};