]> git.eshelyaron.com Git - emacs.git/commitdiff
(Info-scroll-down): Call pos-visible-in-window-p with
authorGerd Moellmann <gerd@gnu.org>
Wed, 7 Mar 2001 16:55:17 +0000 (16:55 +0000)
committerGerd Moellmann <gerd@gnu.org>
Wed, 7 Mar 2001 16:55:17 +0000 (16:55 +0000)
second arg t.

lisp/info.el

index 6a2409afbc241b02da0fffb699f131e0a7b1dc20..e384bbedba08c83353e274b72227c5c04503abaf 100644 (file)
@@ -1,7 +1,7 @@
 ;;; info.el --- info package for Emacs.
 
-;; Copyright (C) 1985, 86, 92, 93, 94, 95, 96, 97, 98, 99, 2000, 2001 Free Software
-;; Foundation, Inc.
+;; Copyright (C) 1985, 86, 92, 93, 94, 95, 96, 97, 98, 99, 2000, 2001
+;;  Free Software Foundation, Inc.
 
 ;; Maintainer: FSF
 ;; Keywords: help
@@ -1766,7 +1766,8 @@ parent node."
                 (search-forward "\n* Menu:"
                                 current-point
                                 t)))))
-    (if (or virtual-end (pos-visible-in-window-p (point-min)))
+    (if (or virtual-end 
+           (pos-visible-in-window-p (point-min) t)))
        (Info-last-preorder)
       (scroll-down))))