diff options
Diffstat (limited to 'src/dispextern.h')
| -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 acd7862e5dc..d5479c7a64e 100644 --- a/src/dispextern.h +++ b/src/dispextern.h | |||
| @@ -2157,7 +2157,9 @@ struct it | |||
| 2157 | Lisp_Object *dpvec, *dpend; | 2157 | Lisp_Object *dpvec, *dpend; |
| 2158 | 2158 | ||
| 2159 | /* Length in bytes of the char that filled dpvec. A value of zero | 2159 | /* Length in bytes of the char that filled dpvec. A value of zero |
| 2160 | means that no such character is involved. */ | 2160 | means that no such character is involved. A negative value means |
| 2161 | the rest of the line from the current iterator position onwards | ||
| 2162 | is hidden by selective display or ellipsis. */ | ||
| 2161 | int dpvec_char_len; | 2163 | int dpvec_char_len; |
| 2162 | 2164 | ||
| 2163 | /* Face id to use for all characters in display vector. -1 if unused. */ | 2165 | /* Face id to use for all characters in display vector. -1 if unused. */ |
| @@ -2253,6 +2255,7 @@ struct it | |||
| 2253 | unsigned string_from_display_prop_p : 1; | 2255 | unsigned string_from_display_prop_p : 1; |
| 2254 | unsigned display_ellipsis_p : 1; | 2256 | unsigned display_ellipsis_p : 1; |
| 2255 | unsigned avoid_cursor_p : 1; | 2257 | unsigned avoid_cursor_p : 1; |
| 2258 | unsigned bidi_p:1; | ||
| 2256 | enum line_wrap_method line_wrap; | 2259 | enum line_wrap_method line_wrap; |
| 2257 | 2260 | ||
| 2258 | /* properties from display property that are reset by another display property. */ | 2261 | /* properties from display property that are reset by another display property. */ |
| @@ -2473,7 +2476,7 @@ struct it | |||
| 2473 | 2476 | ||
| 2474 | /* Non-zero means we need to reorder bidirectional text for display | 2477 | /* Non-zero means we need to reorder bidirectional text for display |
| 2475 | in the visual order. */ | 2478 | in the visual order. */ |
| 2476 | int bidi_p; | 2479 | unsigned bidi_p : 1; |
| 2477 | 2480 | ||
| 2478 | /* For iterating over bidirectional text. */ | 2481 | /* For iterating over bidirectional text. */ |
| 2479 | struct bidi_it bidi_it; | 2482 | struct bidi_it bidi_it; |