diff options
| author | Glenn Morris | 2007-11-01 03:47:34 +0000 |
|---|---|---|
| committer | Glenn Morris | 2007-11-01 03:47:34 +0000 |
| commit | b4a638b358651b9694738e9a610a48dddd3ebca3 (patch) | |
| tree | b34e59db42f1038203faca477a65c01daaf671a8 /src | |
| parent | 62b1cb943f4b343b02778248c8e5ee206d68b601 (diff) | |
| download | emacs-b4a638b358651b9694738e9a610a48dddd3ebca3.tar.gz emacs-b4a638b358651b9694738e9a610a48dddd3ebca3.zip | |
Johan Bockg� <bojohan at gnu.org>
(x_draw_stretch_glyph_string): Don't set s->stippled_p here, since it
has already been set by x_set_glyph_string_gc from
x_draw_glyph_string.
http://lists.gnu.org/archive/html/emacs-devel/2007-10/msg01571.html
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 6 | ||||
| -rw-r--r-- | src/macterm.c | 1 | ||||
| -rw-r--r-- | src/w32term.c | 1 | ||||
| -rw-r--r-- | src/xterm.c | 1 |
4 files changed, 6 insertions, 3 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index c69eb2db180..1d33322996e 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2007-11-01 Johan Bockg,Ae(Brd <bojohan@gnu.org> | ||
| 2 | |||
| 3 | * macterm.c, w32term.c, xterm.c (x_draw_stretch_glyph_string): | ||
| 4 | Don't set s->stippled_p here, since it has already been set by | ||
| 5 | x_set_glyph_string_gc from x_draw_glyph_string. | ||
| 6 | |||
| 1 | 2007-10-31 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | 7 | 2007-10-31 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> |
| 2 | 8 | ||
| 3 | * macfns.c [USE_ATSUI] (Fmac_atsu_font_face_attributes): | 9 | * macfns.c [USE_ATSUI] (Fmac_atsu_font_face_attributes): |
diff --git a/src/macterm.c b/src/macterm.c index 726a0f72b18..9bc96e492d3 100644 --- a/src/macterm.c +++ b/src/macterm.c | |||
| @@ -3704,7 +3704,6 @@ x_draw_stretch_glyph_string (s) | |||
| 3704 | struct glyph_string *s; | 3704 | struct glyph_string *s; |
| 3705 | { | 3705 | { |
| 3706 | xassert (s->first_glyph->type == STRETCH_GLYPH); | 3706 | xassert (s->first_glyph->type == STRETCH_GLYPH); |
| 3707 | s->stippled_p = s->face->stipple != 0; | ||
| 3708 | 3707 | ||
| 3709 | if (s->hl == DRAW_CURSOR | 3708 | if (s->hl == DRAW_CURSOR |
| 3710 | && !x_stretch_cursor_p) | 3709 | && !x_stretch_cursor_p) |
diff --git a/src/w32term.c b/src/w32term.c index 510f2381a6d..a2d64ba581f 100644 --- a/src/w32term.c +++ b/src/w32term.c | |||
| @@ -2364,7 +2364,6 @@ x_draw_stretch_glyph_string (s) | |||
| 2364 | struct glyph_string *s; | 2364 | struct glyph_string *s; |
| 2365 | { | 2365 | { |
| 2366 | xassert (s->first_glyph->type == STRETCH_GLYPH); | 2366 | xassert (s->first_glyph->type == STRETCH_GLYPH); |
| 2367 | s->stippled_p = s->face->stipple != 0; | ||
| 2368 | 2367 | ||
| 2369 | if (s->hl == DRAW_CURSOR | 2368 | if (s->hl == DRAW_CURSOR |
| 2370 | && !x_stretch_cursor_p) | 2369 | && !x_stretch_cursor_p) |
diff --git a/src/xterm.c b/src/xterm.c index ee26f054b4e..5bfd95b8aaf 100644 --- a/src/xterm.c +++ b/src/xterm.c | |||
| @@ -2539,7 +2539,6 @@ x_draw_stretch_glyph_string (s) | |||
| 2539 | struct glyph_string *s; | 2539 | struct glyph_string *s; |
| 2540 | { | 2540 | { |
| 2541 | xassert (s->first_glyph->type == STRETCH_GLYPH); | 2541 | xassert (s->first_glyph->type == STRETCH_GLYPH); |
| 2542 | s->stippled_p = s->face->stipple != 0; | ||
| 2543 | 2542 | ||
| 2544 | if (s->hl == DRAW_CURSOR | 2543 | if (s->hl == DRAW_CURSOR |
| 2545 | && !x_stretch_cursor_p) | 2544 | && !x_stretch_cursor_p) |