aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love2000-11-29 12:53:06 +0000
committerDave Love2000-11-29 12:53:06 +0000
commit601bda2ec98fe1caae90ce48f7a609ed1f9a8fac (patch)
tree3f642fed633d9bf04dcd5df6e332209d842034d3
parent01242779033909f4868d9fc09f87fff725bd1cc6 (diff)
downloademacs-601bda2ec98fe1caae90ce48f7a609ed1f9a8fac.tar.gz
emacs-601bda2ec98fe1caae90ce48f7a609ed1f9a8fac.zip
pos-visible-in-window-p change
-rw-r--r--lispref/windows.texi14
1 files changed, 8 insertions, 6 deletions
diff --git a/lispref/windows.texi b/lispref/windows.texi
index 407ea2f5852..f20929fbb89 100644
--- a/lispref/windows.texi
+++ b/lispref/windows.texi
@@ -1202,12 +1202,14 @@ off screen at the next redisplay, then redisplay computes a new window-start
1202position that works well with point, and thus @var{position} is not used. 1202position that works well with point, and thus @var{position} is not used.
1203@end defun 1203@end defun
1204 1204
1205@defun pos-visible-in-window-p &optional position window 1205@defun pos-visible-in-window-p &optional position window fully
1206This function returns @code{t} if @var{position} is within the range 1206This function returns @code{t} if @var{position} is within the range of
1207of text currently visible on the screen in @var{window}. It returns 1207text currently visible on the screen in @var{window}. If @var{fully} is
1208@code{nil} if @var{position} is scrolled vertically out of view. The 1208non-@code{nil}, then locations that are partially obscured are not
1209argument @var{position} defaults to the current position of point; 1209considered visible. It returns @code{nil} if @var{position} is scrolled
1210@var{window}, to the selected window. Here is an example: 1210vertically out of view. The argument @var{position} defaults to the
1211current position of point; @var{window}, to the selected window. Here
1212is an example:
1211 1213
1212@example 1214@example
1213@group 1215@group