aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2000-10-13 13:08:45 +0000
committerGerd Moellmann2000-10-13 13:08:45 +0000
commitff2a2e6b9e6a460acd0c852dbe20b071db3a6a07 (patch)
tree6d570405446895144710c81042b03811aca8240c
parent8d74fbd26221341880744716857e29aaaf0abd4c (diff)
downloademacs-ff2a2e6b9e6a460acd0c852dbe20b071db3a6a07.tar.gz
emacs-ff2a2e6b9e6a460acd0c852dbe20b071db3a6a07.zip
(struct it): Remove member add_overlay_start.
(set_iterator_to_next): Change prototype.
-rw-r--r--src/dispextern.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/dispextern.h b/src/dispextern.h
index 22d2530244e..dd1efa757ae 100644
--- a/src/dispextern.h
+++ b/src/dispextern.h
@@ -1,5 +1,5 @@
1/* Interface definitions for display code. 1/* Interface definitions for display code.
2 Copyright (C) 1985, 1993, 1994, 1997, 1998, 1999 2 Copyright (C) 1985, 1993, 1994, 1997, 1998, 1999, 2000
3 Free Software Foundation, Inc. 3 Free Software Foundation, Inc.
4 4
5This file is part of GNU Emacs. 5This file is part of GNU Emacs.
@@ -1585,10 +1585,6 @@ struct it
1585 OVERLAY_STRING_CHUNK_SIZE. */ 1585 OVERLAY_STRING_CHUNK_SIZE. */
1586 int n_overlay_strings; 1586 int n_overlay_strings;
1587 1587
1588 /* If non-zero, an additional overlay start position to take overlay
1589 strings from. */
1590 int add_overlay_start;
1591
1592 /* If non-nil, a Lisp string being processed. If 1588 /* If non-nil, a Lisp string being processed. If
1593 current.overlay_string_index >= 0, this is an overlay string from 1589 current.overlay_string_index >= 0, this is an overlay string from
1594 pos. */ 1590 pos. */
@@ -2142,7 +2138,7 @@ void init_iterator P_ ((struct it *, struct window *, int,
2142void init_iterator_to_row_start P_ ((struct it *, struct window *, 2138void init_iterator_to_row_start P_ ((struct it *, struct window *,
2143 struct glyph_row *)); 2139 struct glyph_row *));
2144int get_next_display_element P_ ((struct it *)); 2140int get_next_display_element P_ ((struct it *));
2145void set_iterator_to_next P_ ((struct it *)); 2141void set_iterator_to_next P_ ((struct it *, int));
2146void produce_glyphs P_ ((struct it *)); 2142void produce_glyphs P_ ((struct it *));
2147void produce_special_glyphs P_ ((struct it *, enum display_element_type)); 2143void produce_special_glyphs P_ ((struct it *, enum display_element_type));
2148void start_display P_ ((struct it *, struct window *, struct text_pos)); 2144void start_display P_ ((struct it *, struct window *, struct text_pos));