diff options
| author | Andreas Schwab | 2003-03-30 15:39:26 +0000 |
|---|---|---|
| committer | Andreas Schwab | 2003-03-30 15:39:26 +0000 |
| commit | 7b7b454e76880ea18ec375277af655ba9891ba0a (patch) | |
| tree | 5f153b73b39c99465874e99f1ab05deb1a1396c1 /src | |
| parent | efcf423469b4c6ac0f7fa2e6641e744c54dbe64e (diff) | |
| download | emacs-7b7b454e76880ea18ec375277af655ba9891ba0a.tar.gz emacs-7b7b454e76880ea18ec375277af655ba9891ba0a.zip | |
(x_insert_glyphs): Fix swapped width and height
parameters for shift_glyphs_for_insert.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 8 | ||||
| -rw-r--r-- | src/xdisp.c | 4 |
2 files changed, 10 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index accad5d2ede..a7c2dd7e226 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,11 @@ | |||
| 1 | 2003-03-30 Andreas Schwab <schwab@suse.de> | ||
| 2 | |||
| 3 | * xdisp.c (x_insert_glyphs): Fix swapped width and height | ||
| 4 | parameters for shift_glyphs_for_insert. | ||
| 5 | |||
| 6 | * macterm.c (x_redisplay_interface): Add missing entry for | ||
| 7 | draw_vertical_window_border. | ||
| 8 | |||
| 1 | 2003-03-29 Kai Gro,A_(Bjohann <kai.grossjohann@gmx.net> | 9 | 2003-03-29 Kai Gro,A_(Bjohann <kai.grossjohann@gmx.net> |
| 2 | 10 | ||
| 3 | * fileio.c (Fexpand_file_name): In the no-handler case, after | 11 | * fileio.c (Fexpand_file_name): In the no-handler case, after |
diff --git a/src/xdisp.c b/src/xdisp.c index 1cf5950b21f..fa9854da763 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -18412,8 +18412,8 @@ x_insert_glyphs (start, len) | |||
| 18412 | frame_x = window_box_left (w, updated_area) + output_cursor.x; | 18412 | frame_x = window_box_left (w, updated_area) + output_cursor.x; |
| 18413 | frame_y = WINDOW_TO_FRAME_PIXEL_Y (w, output_cursor.y); | 18413 | frame_y = WINDOW_TO_FRAME_PIXEL_Y (w, output_cursor.y); |
| 18414 | 18414 | ||
| 18415 | rif->shift_glyphs_for_insert (f, frame_x, frame_y, line_height, | 18415 | rif->shift_glyphs_for_insert (f, frame_x, frame_y, shifted_region_width, |
| 18416 | shifted_region_width, shift_by_width); | 18416 | line_height, shift_by_width); |
| 18417 | 18417 | ||
| 18418 | /* Write the glyphs. */ | 18418 | /* Write the glyphs. */ |
| 18419 | hpos = start - row->glyphs[updated_area]; | 18419 | hpos = start - row->glyphs[updated_area]; |