summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKim F. Storm <storm@cua.dk>2005-09-07 08:46:04 +0000
committerKim F. Storm <storm@cua.dk>2005-09-07 08:46:04 +0000
commitedf3d146cc73256b2c992a90e6379680c797d54e (patch)
treecde4f75da8175f46f29ed0ec0088eb81348c918f
parent821f6daef748d7ec06612479d0d24037601fb31b (diff)
downloademacs-edf3d146cc73256b2c992a90e6379680c797d54e.tar.gz
(try_window): Remove superfluous cursor_height calculation.
Fixes crash reported by YAMAMOTO Mitsuharu.
-rw-r--r--src/xdisp.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/xdisp.c b/src/xdisp.c
index 95f5a6709bf..ab3aae5fb91 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -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)