Mercurial > emacs
diff src/scroll.c @ 1714:2a1dbc7de507
* 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.
| author | Jim Blandy <jimb@redhat.com> |
|---|---|
| date | Thu, 24 Dec 1992 06:13:57 +0000 |
| parents | 9b29df8c7cb3 |
| children | e94a593c3952 |
line wrap: on
line diff
--- 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
