diff options
Diffstat (limited to 'src/w32term.h')
| -rw-r--r-- | src/w32term.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/w32term.h b/src/w32term.h index 8a1bbd11766..41c5c71832a 100644 --- a/src/w32term.h +++ b/src/w32term.h | |||
| @@ -453,7 +453,9 @@ struct scroll_bar { | |||
| 453 | 453 | ||
| 454 | /* 1 if the background of the fringe that is adjacent to a scroll | 454 | /* 1 if the background of the fringe that is adjacent to a scroll |
| 455 | bar is extended to the gap between the fringe and the bar. */ | 455 | bar is extended to the gap between the fringe and the bar. */ |
| 456 | unsigned fringe_extended_p : 1; | 456 | /* Note: this could be a bit field, but we need to take its address |
| 457 | in ALLOCATE_PSEUDOVECTOR (see x_scroll_bar_create). */ | ||
| 458 | bool fringe_extended_p; | ||
| 457 | }; | 459 | }; |
| 458 | 460 | ||
| 459 | /* Turning a lisp vector value into a pointer to a struct scroll_bar. */ | 461 | /* Turning a lisp vector value into a pointer to a struct scroll_bar. */ |