aboutsummaryrefslogtreecommitdiffstats
path: root/src/window.c
diff options
context:
space:
mode:
authorTom Tromey2013-06-13 11:29:06 -0600
committerTom Tromey2013-06-13 11:29:06 -0600
commit5ccb7e7b1ea2ca7f6e45d00d839e19f22cc961da (patch)
treeaf9b79246f0b18d748c3e1c33b1bb1b33cf1fbe0 /src/window.c
parent313dfb6277b3e1ef28c7bb76e776f10168e3f0a3 (diff)
parent94fa6ec7b306b47c251f7b8b67662598027a7ff3 (diff)
downloademacs-5ccb7e7b1ea2ca7f6e45d00d839e19f22cc961da.tar.gz
emacs-5ccb7e7b1ea2ca7f6e45d00d839e19f22cc961da.zip
merge from trunk
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 33bf70b75c8..81a2285edba 100644
--- a/src/window.c
+++ b/src/window.c
@@ -1620,12 +1620,13 @@ specifies the position of the last visible glyph in WINDOW. POS
1620defaults to point in WINDOW; WINDOW defaults to the selected window. 1620defaults to point in WINDOW; WINDOW defaults to the selected window.
1621 1621
1622If POS is visible, return t if PARTIALLY is nil; if PARTIALLY is non-nil, 1622If POS is visible, return t if PARTIALLY is nil; if PARTIALLY is non-nil,
1623return value is a list of 2 or 6 elements (X Y [RTOP RBOT ROWH VPOS]), 1623the return value is a list of 2 or 6 elements (X Y [RTOP RBOT ROWH VPOS]),
1624where X and Y are the pixel coordinates relative to the top left corner 1624where X and Y are the pixel coordinates relative to the top left corner
1625of the window. The remaining elements are omitted if the character after 1625of the window. The remaining elements are omitted if the character after
1626POS is fully visible; otherwise, RTOP and RBOT are the number of pixels 1626POS is fully visible; otherwise, RTOP and RBOT are the number of pixels
1627off-window at the top and bottom of the row, ROWH is the height of the 1627off-window at the top and bottom of the screen line ("row") containing
1628display row, and VPOS is the row number (0-based) containing POS. */) 1628POS, ROWH is the visible height of that row, and VPOS is the row number
1629\(zero-based). */)
1629 (Lisp_Object pos, Lisp_Object window, Lisp_Object partially) 1630 (Lisp_Object pos, Lisp_Object window, Lisp_Object partially)
1630{ 1631{
1631 register struct window *w; 1632 register struct window *w;