changeset 5738:730f63010940

(Fpos_visible_in_window_p): Return nil if POS > ZV.
author Karl Heuer <kwzh@gnu.org>
date Wed, 02 Feb 1994 07:16:51 +0000
parents eb722251d156
children 0709eb474647
files src/window.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/window.c	Wed Feb 02 06:32:28 1994 +0000
+++ b/src/window.c	Wed Feb 02 07:16:51 1994 +0000
@@ -214,7 +214,7 @@
     }
   else
     {
-      if (posint > BUF_Z (buf))
+      if (posint > BUF_ZV (buf))
 	return Qnil;
 
       /* If that info is not correct, calculate afresh */