mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-04-27 08:43:40 -07:00
* scroll.c (do_scrolling): When bcopying the max_ascent field from
current_frame to temp_frame, remember that max_ascent is an array of shorts, not ints.
This commit is contained in:
parent
ea73629837
commit
08b879b49f
1 changed files with 1 additions and 1 deletions
|
|
@ -265,7 +265,7 @@ do_scrolling (frame, matrix, window_size, unchanged_at_top)
|
|||
bcopy (current_frame->pix_height, temp_frame->pix_height,
|
||||
current_frame->height * sizeof (short));
|
||||
bcopy (current_frame->max_ascent, temp_frame->max_ascent,
|
||||
current_frame->height * sizeof (int));
|
||||
current_frame->height * sizeof (short));
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue