aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1994-08-11 07:18:04 +0000
committerRichard M. Stallman1994-08-11 07:18:04 +0000
commita283f4a3d525a0040fb9bd834ec8d1a3b3e01858 (patch)
treed067cd2aa9add3bea921cd90b8db6addbb4cb477
parent52267b568dd193b37f0125a71acb7db94399d28a (diff)
downloademacs-a283f4a3d525a0040fb9bd834ec8d1a3b3e01858.tar.gz
emacs-a283f4a3d525a0040fb9bd834ec8d1a3b3e01858.zip
*** empty log message ***
-rw-r--r--lispref/windows.texi6
1 files changed, 5 insertions, 1 deletions
diff --git a/lispref/windows.texi b/lispref/windows.texi
index bafca4ebb28..88c1f07497e 100644
--- a/lispref/windows.texi
+++ b/lispref/windows.texi
@@ -952,7 +952,10 @@ This function returns the position of the end of the display in window
952used. 952used.
953 953
954If the last redisplay of @var{window} was preempted, and did not finish, 954If the last redisplay of @var{window} was preempted, and did not finish,
955Emacs does not know the position of the end of display in that window; 955Emacs does not know the position of the end of display in that window.
956In that case, this function returns a value that is not correct. In a
957future version, @code{window-end} will return @code{nil} in that case.
958@ignore
956in that case, this function returns @code{nil}. You can compute where 959in that case, this function returns @code{nil}. You can compute where
957the end of the window @emph{would} have been, if redisplay had finished, 960the end of the window @emph{would} have been, if redisplay had finished,
958like this: 961like this:
@@ -964,6 +967,7 @@ like this:
964 window) 967 window)
965 (point)) 968 (point))
966@end example 969@end example
970@end ignore
967@end defun 971@end defun
968 972
969@defun set-window-start window position &optional noforce 973@defun set-window-start window position &optional noforce