From: Alan Third Date: Sat, 26 Jul 2025 11:59:10 +0000 (+0100) Subject: Fix last commit X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=613d0dd31aafb3adc495587eac0ab8baf4d61c89;p=emacs.git Fix last commit * src/nsterm.m (ns_draw_fringe_bitmap): Rename clearRect to bmpRect where missed previously. (cherry picked from commit 5bc75585d5b9d583c9643408bf4c2f639357a827) --- diff --git a/src/nsterm.m b/src/nsterm.m index 1d86fab3db5..589de7794d0 100644 --- a/src/nsterm.m +++ b/src/nsterm.m @@ -3055,12 +3055,12 @@ ns_draw_fringe_bitmap (struct window *w, struct glyph_row *row, ns_focus (f, &bmpRect, 1); /* Clear screen unless overlay. */ - if (!p->overlay_p && !NSIsEmptyRect (clearRect)) + if (!p->overlay_p && !NSIsEmptyRect (bmpRect)) { - NSTRACE_RECT ("clearRect", clearRect); + NSTRACE_RECT ("clearRect", bmpRect); [[NSColor colorWithUnsignedLong:face->background] set]; - NSRectFill (clearRect); + NSRectFill (bmpRect); } NSBezierPath *bmp = [fringe_bmp objectForKey:[NSNumber numberWithInt:p->which]];