changeset 33463:968cd8a9cdfe

(Fpos_visible_in_window_p): Call pos_visible with extra argument.
author Gerd Moellmann <gerd@gnu.org>
date Tue, 14 Nov 2000 05:43:37 +0000
parents d8cd8e1bc659
children 94ee575dd668
files src/window.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/window.c	Tue Nov 14 05:43:18 2000 +0000
+++ b/src/window.c	Tue Nov 14 05:43:37 2000 +0000
@@ -337,7 +337,7 @@
 	 char in the window.  */
       if (!NILP (fully))
 	{
-	  pos_visible_p (w, posint, &fully_p);
+	  pos_visible_p (w, posint, &fully_p, !NILP (fully));
 	  in_window = fully_p ? Qt : Qnil;
 	}
       else
@@ -350,7 +350,7 @@
     in_window = Qnil;
   else
     {
-      if (pos_visible_p (w, posint, &fully_p))
+      if (pos_visible_p (w, posint, &fully_p, !NILP (fully)))
 	in_window = NILP (fully) || fully_p ? Qt : Qnil;
       else
 	in_window = Qnil;