Mercurial > emacs
changeset 50345:5d5eafd3bee1
(x_insert_glyphs): Fix swapped width and height
parameters for shift_glyphs_for_insert.
author | Andreas Schwab <schwab@suse.de> |
---|---|
date | Sun, 30 Mar 2003 15:39:12 +0000 |
parents | 31cf5b909af7 |
children | 3eefcc420a5a |
files | src/xdisp.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/xdisp.c Sun Mar 30 15:35:32 2003 +0000 +++ b/src/xdisp.c Sun Mar 30 15:39:12 2003 +0000 @@ -18412,8 +18412,8 @@ frame_x = window_box_left (w, updated_area) + output_cursor.x; frame_y = WINDOW_TO_FRAME_PIXEL_Y (w, output_cursor.y); - rif->shift_glyphs_for_insert (f, frame_x, frame_y, line_height, - shifted_region_width, shift_by_width); + rif->shift_glyphs_for_insert (f, frame_x, frame_y, shifted_region_width, + line_height, shift_by_width); /* Write the glyphs. */ hpos = start - row->glyphs[updated_area];