aboutsummaryrefslogtreecommitdiffstats
path: root/src/w32term.h
diff options
context:
space:
mode:
authorJoakim Verona2013-08-13 20:16:27 +0200
committerJoakim Verona2013-08-13 20:16:27 +0200
commitf0a5c7bd7d1654efded1a93b71b662d815d18ef8 (patch)
treebd88eee45b947609040743fb00ca7104ae3689df /src/w32term.h
parenta218d7fbf59ed0896f02bf50ed1702c26696cd30 (diff)
parent21c58ae2a804b00812d3e609806326ac5d301e34 (diff)
downloademacs-f0a5c7bd7d1654efded1a93b71b662d815d18ef8.tar.gz
emacs-f0a5c7bd7d1654efded1a93b71b662d815d18ef8.zip
merge from trunk
Diffstat (limited to 'src/w32term.h')
-rw-r--r--src/w32term.h4
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. */