(w32_draw_fringe_bitmap): Fixed a typo in the last patch.

This commit is contained in:
Sam Steingold 2004-02-09 18:49:44 +00:00
parent 5890e9f7ac
commit 4c1947b96e
2 changed files with 9 additions and 5 deletions

View file

@ -1,3 +1,7 @@
2004-02-09 Sam Steingold <sds@gnu.org>
* w32term.c (w32_draw_fringe_bitmap): Fixed a typo in the last patch.
2004-02-09 Kim F. Storm <storm@cua.dk>
* fringe.c: New file. Move original fringe related declarations
@ -28,7 +32,7 @@
DEFVAR_LISP Voverflow_newline_into_fringe.
(init_fringe_once, init_fringe): New functions.
(w32_init_fringe, w32_reset_fringes) [WINDOWS_NT]: New functions.
* Makefile.in (obj): Add fringe.o.
(fringe.o): New dependencies.

View file

@ -698,7 +698,7 @@ w32_draw_fringe_bitmap (w, row, p)
else
w32_clip_to_row (w, row, hdc);
if (p->bx >= 0 !p->overlay_p)
if (p->bx >= 0 && !p->overlay_p)
{
w32_fill_area (f, hdc, face->background,
p->bx, p->by, p->nx, p->ny);
@ -725,13 +725,13 @@ w32_draw_fringe_bitmap (w, row, p)
if (p->overlay_p)
{
clipmask = XCreatePixmapFromBitmapData (display,
clipmask = XCreatePixmapFromBitmapData (display,
FRAME_X_DISPLAY_INFO (f)->root_window,
bits, p->wd, p->h,
bits, p->wd, p->h,
1, 0, 1);
gcv.clip_mask = clipmask;
gcv.clip_x_origin = p->x;
gcv.clip_y_origin = p->y;
gcv.clip_y_origin = p->y;
XChangeGC (display, gc, GCClipMask | GCClipXOrigin | GCClipYOrigin, &gcv);
}
#endif