aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann2001-07-25 12:52:23 +0000
committerGerd Moellmann2001-07-25 12:52:23 +0000
commit8d5b986d0f880ddbd887865ae12b403df0464168 (patch)
tree7402523410bdb760e873c7edac95b677b5a9bc2e /src
parent563b384d146608fd48f141b66d54d890e4e017c4 (diff)
downloademacs-8d5b986d0f880ddbd887865ae12b403df0464168.tar.gz
emacs-8d5b986d0f880ddbd887865ae12b403df0464168.zip
(struct it): Increase size of ctl_chars to 16.
Diffstat (limited to 'src')
-rw-r--r--src/dispextern.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dispextern.h b/src/dispextern.h
index 7d95f5564e2..95f3b2731c2 100644
--- a/src/dispextern.h
+++ b/src/dispextern.h
@@ -1591,9 +1591,9 @@ struct it
1591 /* Vector of glyphs for control character translation. The pointer 1591 /* Vector of glyphs for control character translation. The pointer
1592 dpvec is set to ctl_chars when a control character is translated. 1592 dpvec is set to ctl_chars when a control character is translated.
1593 This vector is also used for incomplete multibyte character 1593 This vector is also used for incomplete multibyte character
1594 translation (e.g \222\244). Such a character is at most 3 bytes, 1594 translation (e.g \222\244). Such a character is at most 4 bytes,
1595 thus we need at most 12 bytes here. */ 1595 thus we need at most 16 bytes here. */
1596 Lisp_Object ctl_chars[12]; 1596 Lisp_Object ctl_chars[16];
1597 1597
1598 /* Current buffer or string position of the iterator, including 1598 /* Current buffer or string position of the iterator, including
1599 position in overlay strings etc. */ 1599 position in overlay strings etc. */