diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2007-09-21 11:21:38 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2007-09-21 11:21:38 +0000 |
commit | e243eb1f503d278c460c4d00ac1ae85c0476fe46 (patch) | |
tree | eafa66855b0e9fe1f47c7d53349ba0ac839c6e7e /src/w32term.c | |
parent | 3bef54c92256af36e40c31b87be3bfb408f9ce49 (diff) | |
download | emacs-e243eb1f503d278c460c4d00ac1ae85c0476fe46.tar.gz emacs-e243eb1f503d278c460c4d00ac1ae85c0476fe46.tar.bz2 emacs-e243eb1f503d278c460c4d00ac1ae85c0476fe46.zip |
(x_draw_glyph_string): Use strike_through_color, not underline_color,
to draw strike-through.
Diffstat (limited to 'src/w32term.c')
-rw-r--r-- | src/w32term.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/w32term.c b/src/w32term.c index 0422257f2d6..e56a74e0edd 100644 --- a/src/w32term.c +++ b/src/w32term.c @@ -2547,10 +2547,10 @@ x_draw_glyph_string (s) unsigned long dy = 0, h = 1; if (s->face->overline_color_defaulted_p) - { - w32_fill_area (s->f, s->hdc, s->gc->foreground, s->x, - s->y + dy, s->background_width, h); - } + { + w32_fill_area (s->f, s->hdc, s->gc->foreground, s->x, + s->y + dy, s->background_width, h); + } else { w32_fill_area (s->f, s->hdc, s->face->overline_color, s->x, @@ -2572,7 +2572,7 @@ x_draw_glyph_string (s) } else { - w32_fill_area (s->f, s->hdc, s->face->underline_color, s->x, + w32_fill_area (s->f, s->hdc, s->face->strike_through_color, s->x, s->y + dy, s->width, h); } } |