]> git.eshelyaron.com Git - emacs.git/commitdiff
(x_insert_glyphs): Fix swapped width and height
authorAndreas Schwab <schwab@suse.de>
Sun, 30 Mar 2003 15:39:26 +0000 (15:39 +0000)
committerAndreas Schwab <schwab@suse.de>
Sun, 30 Mar 2003 15:39:26 +0000 (15:39 +0000)
parameters for shift_glyphs_for_insert.

src/ChangeLog
src/xdisp.c

index accad5d2eded4b471bc383d254b71ae4053c90e1..a7c2dd7e2263bebf6099dbf3614dd899f2c46d2e 100644 (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\e,A_\e(Bjohann  <kai.grossjohann@gmx.net>
 
        * fileio.c (Fexpand_file_name): In the no-handler case, after
index 1cf5950b21f3ced696f44c2853072e73d8e4fbd3..fa9854da76337c0c3917edd84922487797a17b45 100644 (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];