if (s->hl == DRAW_CURSOR)
[FRAME_BACKGROUND_COLOR (s->f) set];
- else if (face->underline_defaulted_p)
- [defaultCol set];
else
- [ns_lookup_indexed_color (face->underline_color, s->f) set];
+ [defaultCol set];
/* Do underline. */
if (face->underline)
{
if (s->face->underline == FACE_UNDER_WAVE)
{
+ if (!face->underline_defaulted_p)
+ [ns_lookup_indexed_color (face->underline_color, s->f) set];
+
ns_draw_underwave (s, width, x);
}
else if (s->face->underline == FACE_UNDER_LINE)
s->underline_position = position;
r = NSMakeRect (x, s->ybase + position, width, thickness);
+
+ if (!face->underline_defaulted_p)
+ [ns_lookup_indexed_color (face->underline_color, s->f) set];
NSRectFill (r);
}
}
{
NSRect r;
r = NSMakeRect (x, s->y, width, 1);
+
+ if (!face->overline_color_defaulted_p)
+ [ns_lookup_indexed_color (face->overline_color, s->f) set];
+
NSRectFill (r);
}
dy = lrint ((glyph_height - h) / 2);
r = NSMakeRect (x, glyph_y + dy, width, 1);
+ if (!face->strike_through_color_defaulted_p)
+ [ns_lookup_indexed_color (face->strike_through_color, s->f) set];
+
NSRectFill (r);
}
}
? ns_lookup_indexed_color (NS_FACE_FOREGROUND (s->face),
s->f)
: FRAME_FOREGROUND_COLOR (s->f));
- [col set];
/* Draw underline, overline, strike-through. */
ns_draw_text_decoration (s, s->face, col, s->width, s->x);