# HG changeset patch # User Gerd Moellmann # Date 974180617 0 # Node ID 968cd8a9cdfe0347c88e5e23039e3146efda2478 # Parent d8cd8e1bc6596d66764ee7ae4b1ca4e670bb9880 (Fpos_visible_in_window_p): Call pos_visible with extra argument. diff -r d8cd8e1bc659 -r 968cd8a9cdfe src/window.c --- 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;