# HG changeset patch # User Jim Blandy # Date 725177637 0 # Node ID 2a1dbc7de50766e0c474c3bfa5711ae355ba64c6 # Parent c41aa73741034c1346e401e01b546de196a31f8e * 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. diff -r c41aa7374103 -r 2a1dbc7de507 src/scroll.c --- a/src/scroll.c Thu Dec 24 06:13:24 1992 +0000 +++ b/src/scroll.c Thu Dec 24 06:13:57 1992 +0000 @@ -265,7 +265,7 @@ 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