aboutsummaryrefslogtreecommitdiffstats
path: root/src/w32term.h
diff options
context:
space:
mode:
authorMiles Bader2007-08-03 05:20:51 +0000
committerMiles Bader2007-08-03 05:20:51 +0000
commite145a7fe95fb8f97407d125f94653ef95e42696d (patch)
tree4f83705aac9d1a4416dabcf774115f7cccb80bda /src/w32term.h
parent2a4924ce174b1a2b032558f3036f1d95445c4936 (diff)
parent2f12b713116a4e15b4744fc78d5f0dbb57fcd1ca (diff)
downloademacs-e145a7fe95fb8f97407d125f94653ef95e42696d.tar.gz
emacs-e145a7fe95fb8f97407d125f94653ef95e42696d.zip
Merge from emacs--devo--0
Patches applied: * emacs--devo--0 (patch 832-838) - Remove lisp/erc/erc-nicklist.el - Update some .arch-inventory files - Fix void function definition error in cus-edit.el - Update from CVS - Restore lisp/emacs-lisp/cl-loaddefs.el - Merge from emacs--rel--22 * emacs--rel--22 (patch 75-83) - Update from CVS - Remove lisp/erc/erc-nicklist.el - Update some .arch-inventory files - Indicate that emacs--devo--0--patch-834 does not need to be applied - Merge from gnus--rel--5.10 - Restore lisp/emacs-lisp/cl-loaddefs.el * gnus--rel--5.10 (patch 239-241) - Merge from emacs--devo--0 - Update from CVS Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-239
Diffstat (limited to 'src/w32term.h')
-rw-r--r--src/w32term.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/w32term.h b/src/w32term.h
index 2febf4a33c7..d100cbee222 100644
--- a/src/w32term.h
+++ b/src/w32term.h
@@ -497,6 +497,10 @@ struct scroll_bar {
497 place where the user grabbed it. If the handle isn't currently 497 place where the user grabbed it. If the handle isn't currently
498 being dragged, this is Qnil. */ 498 being dragged, this is Qnil. */
499 Lisp_Object dragging; 499 Lisp_Object dragging;
500
501 /* t if the background of the fringe that is adjacent to a scroll
502 bar is extended to the gap between the fringe and the bar. */
503 Lisp_Object fringe_extended_p;
500}; 504};
501 505
502/* The number of elements a vector holding a struct scroll_bar needs. */ 506/* The number of elements a vector holding a struct scroll_bar needs. */
@@ -586,14 +590,14 @@ extern void w32_fill_rect ();
586extern void w32_clear_window (); 590extern void w32_clear_window ();
587 591
588#define w32_fill_area(f,hdc,pix,x,y,nx,ny) \ 592#define w32_fill_area(f,hdc,pix,x,y,nx,ny) \
589{ \ 593do { \
590 RECT rect; \ 594 RECT rect; \
591 rect.left = x; \ 595 rect.left = x; \
592 rect.top = y; \ 596 rect.top = y; \
593 rect.right = x + nx; \ 597 rect.right = x + nx; \
594 rect.bottom = y + ny; \ 598 rect.bottom = y + ny; \
595 w32_fill_rect (f,hdc,pix,&rect); \ 599 w32_fill_rect (f,hdc,pix,&rect); \
596} 600} while (0)
597 601
598#define w32_clear_rect(f,hdc,lprect) \ 602#define w32_clear_rect(f,hdc,lprect) \
599w32_fill_rect (f,hdc,f->output_data.x->background_pixel,lprect) 603w32_fill_rect (f,hdc,f->output_data.x->background_pixel,lprect)