aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/nsterm.m6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nsterm.m b/src/nsterm.m
index ad3b8ba8487..8862a74f129 100644
--- a/src/nsterm.m
+++ b/src/nsterm.m
@@ -2962,12 +2962,12 @@ ns_draw_fringe_bitmap (struct window *w, struct glyph_row *row,
2962 p->which, p->cursor_p, p->overlay_p, p->wd, p->h, p->dh); 2962 p->which, p->cursor_p, p->overlay_p, p->wd, p->h, p->dh);
2963 2963
2964 /* Clear screen unless overlay. */ 2964 /* Clear screen unless overlay. */
2965 if ( !p->overlay_p ) 2965 if (!p->overlay_p)
2966 { 2966 {
2967 /* Work out the rectangle we will need to clear. */ 2967 /* Work out the rectangle we will need to clear. */
2968 clearRect = NSMakeRect (p->x, p->y, p->wd, p->h); 2968 clearRect = NSMakeRect (p->x, p->y, p->wd, p->h);
2969 2969
2970 if ( p->bx >= 0 ) 2970 if (p->bx >= 0)
2971 clearRect = NSUnionRect (clearRect, NSMakeRect (p->bx, p->by, p->nx, p->ny)); 2971 clearRect = NSUnionRect (clearRect, NSMakeRect (p->bx, p->by, p->nx, p->ny));
2972 2972
2973 /* Handle partially visible rows. */ 2973 /* Handle partially visible rows. */
@@ -2976,7 +2976,7 @@ ns_draw_fringe_bitmap (struct window *w, struct glyph_row *row,
2976 /* The visible portion of imageRect will always be contained 2976 /* The visible portion of imageRect will always be contained
2977 within clearRect. */ 2977 within clearRect. */
2978 ns_focus (f, &clearRect, 1); 2978 ns_focus (f, &clearRect, 1);
2979 if ( !NSIsEmptyRect (clearRect) ) 2979 if (!NSIsEmptyRect (clearRect))
2980 { 2980 {
2981 NSTRACE_RECT ("clearRect", clearRect); 2981 NSTRACE_RECT ("clearRect", clearRect);
2982 2982