1
Fork 0
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:
Jim Blandy 1992-12-24 06:13:57 +00:00
parent ea73629837
commit 08b879b49f

View file

@ -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