Mercurial > emacs
comparison src/dispextern.h @ 53095:bebcff17499f
(struct it): New member start.
author | Kim F. Storm <storm@cua.dk> |
---|---|
date | Tue, 18 Nov 2003 23:42:40 +0000 |
parents | f832dd90f584 |
children | c93af1a0546a |
comparison
equal
deleted
inserted
replaced
53094:cbc887693651 | 53095:bebcff17499f |
---|---|
1775 dpvec is set to ctl_chars when a control character is translated. | 1775 dpvec is set to ctl_chars when a control character is translated. |
1776 This vector is also used for incomplete multibyte character | 1776 This vector is also used for incomplete multibyte character |
1777 translation (e.g \222\244). Such a character is at most 4 bytes, | 1777 translation (e.g \222\244). Such a character is at most 4 bytes, |
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 | |
1781 /* Initial buffer or string position of the iterator, before skipping | |
1782 over display properties and invisible text. */ | |
1783 struct display_pos start; | |
1780 | 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; |
1784 | 1788 |