]> git.eshelyaron.com Git - emacs.git/commitdiff
(try_window): Remove superfluous cursor_height calculation.
authorKim F. Storm <storm@cua.dk>
Wed, 7 Sep 2005 08:46:04 +0000 (08:46 +0000)
committerKim F. Storm <storm@cua.dk>
Wed, 7 Sep 2005 08:46:04 +0000 (08:46 +0000)
Fixes crash reported by YAMAMOTO Mitsuharu.

src/xdisp.c

index 95f5a6709bf9730e634a706f963ab2eaedd8d2d0..ab3aae5fb91016e238f5fbfb140cb03d3de8ab71 100644 (file)
@@ -12830,12 +12830,11 @@ try_window (window, pos, check_margins)
   if (check_margins
       && !MINI_WINDOW_P (w))
     {
-      int this_scroll_margin, cursor_height;
+      int this_scroll_margin;
 
       this_scroll_margin = max (0, scroll_margin);
       this_scroll_margin = min (this_scroll_margin, WINDOW_TOTAL_LINES (w) / 4);
       this_scroll_margin *= FRAME_LINE_HEIGHT (it.f);
-      cursor_height = MATRIX_ROW (w->desired_matrix, w->cursor.vpos)->height;
 
       if ((w->cursor.y < this_scroll_margin
           && CHARPOS (pos) > BEGV)