# HG changeset patch # User Kim F. Storm # Date 1158745398 0 # Node ID ec1038b88e4e111b5fa54d6c6ea9fa56a9be44c6 # Parent 8d2a655d3220f0e597b265867bfc875bc73df4d3 (pos_visible_p): CHARPOS < 0 means return info for last visible glyph in window. diff -r 8d2a655d3220 -r ec1038b88e4e src/xdisp.c --- a/src/xdisp.c Wed Sep 20 09:43:02 2006 +0000 +++ b/src/xdisp.c Wed Sep 20 09:43:18 2006 +0000 @@ -1275,6 +1275,7 @@ /* Return 1 if position CHARPOS is visible in window W. + CHARPOS < 0 means return info about WINDOW_END position. If visible, set *X and *Y to pixel coordinates of top left corner. Set *RTOP and *RBOT to pixel height of an invisible area of glyph at POS. Set *ROWH and *VPOS to row's visible height and VPOS (row number). */ @@ -1313,10 +1314,10 @@ start_display (&it, w, top); move_it_to (&it, charpos, -1, it.last_visible_y-1, -1, - MOVE_TO_POS | MOVE_TO_Y); + (charpos >= 0 ? MOVE_TO_POS : 0) | MOVE_TO_Y); /* Note that we may overshoot because of invisible text. */ - if (IT_CHARPOS (it) >= charpos) + if (charpos >= 0 && IT_CHARPOS (it) >= charpos) { int top_x = it.current_x; int top_y = it.current_y;