From a55130ca1052ba7ddcd9ef22db986cef053f4e00 Mon Sep 17 00:00:00 2001 From: YAMAMOTO Mitsuharu Date: Tue, 4 Mar 2014 20:02:36 +0900 Subject: [PATCH] * xterm.c (x_draw_stretch_glyph_string): Reset clipping. (Bug#16932) --- src/ChangeLog | 5 +++++ src/xterm.c | 2 ++ 2 files changed, 7 insertions(+) diff --git a/src/ChangeLog b/src/ChangeLog index 9ca2d811f2..54ee0ffcc8 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 f06225002a..71b5126f34 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) -- 2.20.1