aboutsummaryrefslogtreecommitdiffstats
path: root/src/window.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/window.c')
-rw-r--r--src/window.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/window.c b/src/window.c
index ed2505a893f..68e4291272d 100644
--- a/src/window.c
+++ b/src/window.c
@@ -1621,12 +1621,13 @@ specifies the position of the last visible glyph in WINDOW. POS
1621defaults to point in WINDOW; WINDOW defaults to the selected window. 1621defaults to point in WINDOW; WINDOW defaults to the selected window.
1622 1622
1623If POS is visible, return t if PARTIALLY is nil; if PARTIALLY is non-nil, 1623If POS is visible, return t if PARTIALLY is nil; if PARTIALLY is non-nil,
1624return value is a list of 2 or 6 elements (X Y [RTOP RBOT ROWH VPOS]), 1624the return value is a list of 2 or 6 elements (X Y [RTOP RBOT ROWH VPOS]),
1625where X and Y are the pixel coordinates relative to the top left corner 1625where X and Y are the pixel coordinates relative to the top left corner
1626of the window. The remaining elements are omitted if the character after 1626of the window. The remaining elements are omitted if the character after
1627POS is fully visible; otherwise, RTOP and RBOT are the number of pixels 1627POS is fully visible; otherwise, RTOP and RBOT are the number of pixels
1628off-window at the top and bottom of the row, ROWH is the height of the 1628off-window at the top and bottom of the screen line ("row") containing
1629display row, and VPOS is the row number (0-based) containing POS. */) 1629POS, ROWH is the visible height of that row, and VPOS is the row number
1630\(zero-based). */)
1630 (Lisp_Object pos, Lisp_Object window, Lisp_Object partially) 1631 (Lisp_Object pos, Lisp_Object window, Lisp_Object partially)
1631{ 1632{
1632 register struct window *w; 1633 register struct window *w;