diff --git a/src/ChangeLog b/src/ChangeLog index 9ca2d811f27..54ee0ffcc8a 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2014-03-04 YAMAMOTO Mitsuharu + + * xterm.c (x_draw_stretch_glyph_string): Reset clipping. + (Bug#16932) + 2014-03-04 Michal Nazarewicz * cmds.c (delete-char): Update docstring pointing out that the diff --git a/src/xterm.c b/src/xterm.c index f06225002a7..71b5126f340 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -2501,6 +2501,8 @@ x_draw_stretch_glyph_string (struct glyph_string *s) XFillRectangle (s->display, s->window, gc, x, y, w, h); XSetForeground (s->display, gc, xgcv.foreground); } + + XSetClipMask (s->display, gc, None); } } else if (!s->background_filled_p)