aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKim F. Storm2003-11-18 23:42:40 +0000
committerKim F. Storm2003-11-18 23:42:40 +0000
commit674351829a7f06a79cfc4d21a29bab1e2f666ed9 (patch)
treebfefb1fef43f03d2c85318db0c0de479bf32f956 /src
parent883800183c74f32eddb203857657a6e2b3c1964d (diff)
downloademacs-674351829a7f06a79cfc4d21a29bab1e2f666ed9.tar.gz
emacs-674351829a7f06a79cfc4d21a29bab1e2f666ed9.zip
(struct it): New member start.
Diffstat (limited to 'src')
-rw-r--r--src/dispextern.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/dispextern.h b/src/dispextern.h
index 615d1a02670..131852967b8 100644
--- a/src/dispextern.h
+++ b/src/dispextern.h
@@ -1778,6 +1778,10 @@ struct it
1778 thus we need at most 16 bytes here. */ 1778 thus we need at most 16 bytes here. */
1779 Lisp_Object ctl_chars[16]; 1779 Lisp_Object ctl_chars[16];
1780 1780
1781 /* Initial buffer or string position of the iterator, before skipping
1782 over display properties and invisible text. */
1783 struct display_pos start;
1784
1781 /* Current buffer or string position of the iterator, including 1785 /* Current buffer or string position of the iterator, including
1782 position in overlay strings etc. */ 1786 position in overlay strings etc. */
1783 struct display_pos current; 1787 struct display_pos current;