summaryrefslogtreecommitdiff
path: root/src/scroll.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/scroll.c')
-rw-r--r--src/scroll.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/scroll.c b/src/scroll.c
index 190ff4ae2a6..09d8f4dde5f 100644
--- a/src/scroll.c
+++ b/src/scroll.c
@@ -256,10 +256,6 @@ do_scrolling (frame, matrix, window_size, unchanged_at_top)
#ifdef HAVE_X_WINDOWS
if (FRAME_X_P (frame))
{
- bcopy (current_frame->nruns, temp_frame->nruns,
- current_frame->height * sizeof (int));
- bcopy (current_frame->face_list, temp_frame->face_list,
- current_frame->height * sizeof (struct run *));
bcopy (current_frame->top_left_x, temp_frame->top_left_x,
current_frame->height * sizeof (short));
bcopy (current_frame->top_left_y, temp_frame->top_left_y,
@@ -268,6 +264,8 @@ do_scrolling (frame, matrix, window_size, unchanged_at_top)
current_frame->height * sizeof (short));
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));
}
#endif