aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2024-11-02 13:16:41 +0200
committerEli Zaretskii2024-11-02 13:16:41 +0200
commit0a6d46228d62ec07cc55c6bd8eaf0ec8a1da9af5 (patch)
treeb55c708da025ac20928165904c9500752b927c43 /src
parent87358e94047c7f86af1f1ac9d9469553dcd6a6e1 (diff)
downloademacs-0a6d46228d62ec07cc55c6bd8eaf0ec8a1da9af5.tar.gz
emacs-0a6d46228d62ec07cc55c6bd8eaf0ec8a1da9af5.zip
; * src/nsterm.m (ns_draw_fringe_bitmap): Fix coding style.
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