diff options
Diffstat (limited to 'src/dispextern.h')
| -rw-r--r-- | src/dispextern.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/dispextern.h b/src/dispextern.h index 7db665993d5..af5a3e836d7 100644 --- a/src/dispextern.h +++ b/src/dispextern.h | |||
| @@ -461,7 +461,7 @@ struct glyph | |||
| 461 | /* Length of acronym or hexadecimal code string (at most 8). */ | 461 | /* Length of acronym or hexadecimal code string (at most 8). */ |
| 462 | unsigned len : 4; | 462 | unsigned len : 4; |
| 463 | /* Character to display. Actually we need only 22 bits. */ | 463 | /* Character to display. Actually we need only 22 bits. */ |
| 464 | unsigned ch : 26; | 464 | unsigned ch : 22; |
| 465 | } glyphless; | 465 | } glyphless; |
| 466 | 466 | ||
| 467 | /* Used to compare all bit-fields above in one step. */ | 467 | /* Used to compare all bit-fields above in one step. */ |
| @@ -2169,6 +2169,10 @@ struct it | |||
| 2169 | Don't handle some `display' properties in these strings. */ | 2169 | Don't handle some `display' properties in these strings. */ |
| 2170 | unsigned string_from_display_prop_p : 1; | 2170 | unsigned string_from_display_prop_p : 1; |
| 2171 | 2171 | ||
| 2172 | /* 1 means `string' comes from a `line-prefix' or `wrap-prefix' | ||
| 2173 | property. */ | ||
| 2174 | unsigned string_from_prefix_prop_p : 1; | ||
| 2175 | |||
| 2172 | /* 1 means we are iterating an object that came from a value of a | 2176 | /* 1 means we are iterating an object that came from a value of a |
| 2173 | `display' property. */ | 2177 | `display' property. */ |
| 2174 | unsigned from_disp_prop_p : 1; | 2178 | unsigned from_disp_prop_p : 1; |
| @@ -2296,6 +2300,7 @@ struct it | |||
| 2296 | bidi_dir_t paragraph_embedding; | 2300 | bidi_dir_t paragraph_embedding; |
| 2297 | unsigned multibyte_p : 1; | 2301 | unsigned multibyte_p : 1; |
| 2298 | unsigned string_from_display_prop_p : 1; | 2302 | unsigned string_from_display_prop_p : 1; |
| 2303 | unsigned string_from_prefix_prop_p : 1; | ||
| 2299 | unsigned display_ellipsis_p : 1; | 2304 | unsigned display_ellipsis_p : 1; |
| 2300 | unsigned avoid_cursor_p : 1; | 2305 | unsigned avoid_cursor_p : 1; |
| 2301 | unsigned bidi_p:1; | 2306 | unsigned bidi_p:1; |