(x_insert_glyphs): Fix swapped width and height

parameters for shift_glyphs_for_insert.
This commit is contained in:
Andreas Schwab 2003-03-30 15:39:26 +00:00
parent efcf423469
commit 7b7b454e76
2 changed files with 10 additions and 2 deletions

View file

@ -1,3 +1,11 @@
2003-03-30 Andreas Schwab <schwab@suse.de>
* xdisp.c (x_insert_glyphs): Fix swapped width and height
parameters for shift_glyphs_for_insert.
* macterm.c (x_redisplay_interface): Add missing entry for
draw_vertical_window_border.
2003-03-29 Kai Gro,A_(Bjohann <kai.grossjohann@gmx.net>
* fileio.c (Fexpand_file_name): In the no-handler case, after

View file

@ -18412,8 +18412,8 @@ x_insert_glyphs (start, len)
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];