diff options
| author | Karoly Lorentey | 2006-12-03 12:25:18 +0000 |
|---|---|---|
| committer | Karoly Lorentey | 2006-12-03 12:25:18 +0000 |
| commit | d6e01aa592f7326dffeafa6e97180a1cc39fe7ea (patch) | |
| tree | 5a22b785cfee1d77d6452607450a12ca82eeecd3 /src/w32term.c | |
| parent | 14bcc1e098410087a837313e2fc822319ff2e8ca (diff) | |
| parent | 4975e69596a64247e8995d1ff9084b98a9a5ed0d (diff) | |
| download | emacs-d6e01aa592f7326dffeafa6e97180a1cc39fe7ea.tar.gz emacs-d6e01aa592f7326dffeafa6e97180a1cc39fe7ea.zip | |
Merged from emacs@sv.gnu.org.
Patches applied:
* emacs@sv.gnu.org/emacs--devo--0--patch-479
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-480
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-481
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-482
Merge from gnus--rel--5.10
* emacs@sv.gnu.org/emacs--devo--0--patch-483
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-484
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-485
Update from CVS
* emacs@sv.gnu.org/gnus--rel--5.10--patch-153
Merge from emacs--devo--0
* emacs@sv.gnu.org/gnus--rel--5.10--patch-154
Update from CVS
* emacs@sv.gnu.org/gnus--rel--5.10--patch-155
Update from CVS
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-585
Diffstat (limited to 'src/w32term.c')
| -rw-r--r-- | src/w32term.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/w32term.c b/src/w32term.c index 9a6142925fd..948a5553e5d 100644 --- a/src/w32term.c +++ b/src/w32term.c | |||
| @@ -1591,7 +1591,10 @@ x_draw_glyph_string_foreground (s) | |||
| 1591 | { | 1591 | { |
| 1592 | /* For overstriking (to simulate bold-face), draw the | 1592 | /* For overstriking (to simulate bold-face), draw the |
| 1593 | characters again shifted to the right by one pixel. */ | 1593 | characters again shifted to the right by one pixel. */ |
| 1594 | int old_BkMode = SetBkMode (s->hdc, TRANSPARENT); | ||
| 1594 | w32_text_out (s, x + 1, s->ybase - boff, s->char2b, s->nchars); | 1595 | w32_text_out (s, x + 1, s->ybase - boff, s->char2b, s->nchars); |
| 1596 | if (old_BkMode && old_BkMode != TRANSPARENT) | ||
| 1597 | SetBkMode (s->hdc, old_BkMode); | ||
| 1595 | } | 1598 | } |
| 1596 | } | 1599 | } |
| 1597 | if (s->font && s->font->hfont) | 1600 | if (s->font && s->font->hfont) |