diff options
| author | Kenichi Handa | 1999-09-03 01:28:42 +0000 |
|---|---|---|
| committer | Kenichi Handa | 1999-09-03 01:28:42 +0000 |
| commit | 4659838fc95c262b60650ea584efeaf34b4c4ec7 (patch) | |
| tree | 92cb7637ede284245ec986cdc756f86809f91faa | |
| parent | 765fe1d0fac970c0354d8bd0c79605e8bb307850 (diff) | |
| download | emacs-4659838fc95c262b60650ea584efeaf34b4c4ec7.tar.gz emacs-4659838fc95c262b60650ea584efeaf34b4c4ec7.zip | |
(struct it): Change the size of the member `ctl_chars'.
| -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. */ |