diff options
| author | Kenichi Handa | 2006-07-28 12:40:43 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2006-07-28 12:40:43 +0000 |
| commit | 1b4fe7abd255dbba6c50e82ca301149d02cd4abd (patch) | |
| tree | 2dc4c7e272dea240d76f046cb3eee5174af5f989 /src | |
| parent | 4dd030566e585eea2e66ea0b20adc19aa39d308a (diff) | |
| download | emacs-1b4fe7abd255dbba6c50e82ca301149d02cd4abd.tar.gz emacs-1b4fe7abd255dbba6c50e82ca301149d02cd4abd.zip | |
(x_set_glyph_string_clipping_exactly) [USE_FONT_BACKEND]:
Clip to src->width, etc (not src->clip_XXX).
Diffstat (limited to 'src')
| -rw-r--r-- | src/xterm.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xterm.c b/src/xterm.c index de26d3931d9..126d954a3a4 100644 --- a/src/xterm.c +++ b/src/xterm.c | |||
| @@ -1193,9 +1193,9 @@ x_set_glyph_string_clipping_exactly (src, dst) | |||
| 1193 | if (enable_font_backend) | 1193 | if (enable_font_backend) |
| 1194 | { | 1194 | { |
| 1195 | r.x = dst->clip_x = src->x; | 1195 | r.x = dst->clip_x = src->x; |
| 1196 | r.width = dst->clip_width = src->clip_width; | 1196 | r.width = dst->clip_width = src->width; |
| 1197 | r.y = dst->clip_y = src->clip_y; | 1197 | r.y = dst->clip_y = src->y; |
| 1198 | r.height = dst->clip_height = src->clip_height; | 1198 | r.height = dst->clip_height = src->height; |
| 1199 | } | 1199 | } |
| 1200 | else | 1200 | else |
| 1201 | { | 1201 | { |