aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann <[email protected]>2001-02-16 12:36:34 +0000
committerGerd Moellmann <[email protected]>2001-02-16 12:36:34 +0000
commitbf0ab8a291322c72fa3a7d73deb9452fa45fd70f (patch)
tree9e15b9d642530d31ac7a8f3c189855f7571af0bd /src
parent7728f17b18f1d6034931d3bf196d87aaca3084e7 (diff)
(x_insert_glyphs): Call window_box_left to obtain
the left x-coordinate of the area to shift.
Diffstat (limited to 'src')
-rw-r--r--src/xterm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xterm.c b/src/xterm.c
index a20acf026d..0a62e1b761 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -5151,7 +5151,7 @@ x_insert_glyphs (start, len)
- shift_by_width);
/* Shift right. */
- frame_x = WINDOW_TO_FRAME_PIXEL_X (w, output_cursor.x);
+ frame_x = window_box_left (w, updated_area) + output_cursor.x;
frame_y = WINDOW_TO_FRAME_PIXEL_Y (w, output_cursor.y);
XCopyArea (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), FRAME_X_WINDOW (f),
f->output_data.x->normal_gc,