comparison src/dispextern.h @ 25503:bbb032f48e20

(struct it): Change the size of the member `ctl_chars'.
author Kenichi Handa <handa@m17n.org>
date Fri, 03 Sep 1999 01:28:42 +0000
parents 803de6670aa5
children 7ebf07355e2b
comparison
equal deleted inserted replaced
25502:4a69654961a6 25503:bbb032f48e20
1495 a face. The face is restored when all glyphs from dpvec have 1495 a face. The face is restored when all glyphs from dpvec have
1496 been delivered. */ 1496 been delivered. */
1497 int saved_face_id; 1497 int saved_face_id;
1498 1498
1499 /* Vector of glyphs for control character translation. The pointer 1499 /* Vector of glyphs for control character translation. The pointer
1500 dpvec is set to ctl_chars when a control character is translated. */ 1500 dpvec is set to ctl_chars when a control character is translated.
1501 Lisp_Object ctl_chars[4]; 1501 This vector is also used for incomplete multibyte character
1502 translation (e.g \222\244). Such a character is at most 3 bytes,
1503 thus we need at most 12 bytes here. */
1504 Lisp_Object ctl_chars[12];
1502 1505
1503 /* Current buffer or string position of the iterator, including 1506 /* Current buffer or string position of the iterator, including
1504 position in overlay strings etc. */ 1507 position in overlay strings etc. */
1505 struct display_pos current; 1508 struct display_pos current;
1506 1509