Mercurial > emacs
changeset 36634:f3706ac7b437
(Info-scroll-down): Call pos-visible-in-window-p with
second arg t.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Wed, 07 Mar 2001 16:55:17 +0000 |
parents | 5dad3c516338 |
children | f85346ef86be |
files | lisp/info.el |
diffstat | 1 files changed, 4 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/info.el Wed Mar 07 16:52:08 2001 +0000 +++ b/lisp/info.el Wed Mar 07 16:55:17 2001 +0000 @@ -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 @@ (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))))