1999-11-07 Gerd Moellmann <gerd@gnu.org>
- * alloc.c, buffer.c, editfns.c: Remove conditional compilation on
- USE_TEXT_PROPERTIES.
+ * xdisp.c (resize_mini_window): Fix computation of needed
+ mini-window height.
+
+ * alloc.c, buffer.c, editfns.c, xdisp.c: Remove conditional
+ compilation on USE_TEXT_PROPERTIES.
* Fbyte_code: Use block statements in cases and declare v1 and v2
locally there. Rearrange case statements so that thos most
&& indented_beyond_p (IT_CHARPOS (*it), IT_BYTEPOS (*it),
it->selective))
visible_p = 0;
-#ifdef USE_TEXT_PROPERTIES
else
{
Lisp_Object prop;
if (TEXT_PROP_MEANS_INVISIBLE (prop))
visible_p = 0;
}
-#endif /* USE_TEXT_PROPERTIES */
/* Back one more newline if the current one is invisible. */
if (!visible_p)
struct it *it;
int start_charpos, end_charpos;
{
-#ifdef USE_TEXT_PROPERTIES
Lisp_Object prop, limit;
int invisible_found_p;
}
return invisible_found_p;
-
-#else /* not USE_TEXT_PROPERTIES */
- return 0;
-#endif /* not USE_TEXT_PROPERTIES */
}
max_height = min (total_height, max_height);
/* Find out the height of the text in the window. */
+ last_height = 0;
move_it_to (&it, ZV, -1, -1, -1, MOVE_TO_POS);
- height = ((unit - 1 + it.current_y + it.max_ascent + it.max_descent)
- / unit);
- height = max (1, height);
+ if (it.max_ascent == 0 && it.max_descent == 0)
+ height = it.current_y + last_height;
+ else
+ height = it.current_y + it.max_ascent + it.max_descent;
+ height = (height + unit - 1) / unit;
/* Compute a suitable window start. */
if (height > max_height)