diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/dispextern.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/dispextern.h b/src/dispextern.h index 9a8af123ef0..29b0c2aa550 100644 --- a/src/dispextern.h +++ b/src/dispextern.h | |||
| @@ -1497,8 +1497,11 @@ struct it | |||
| 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. */ |