diff options
author | Gerd Moellmann <gerd@gnu.org> | 2001-03-20 14:22:50 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2001-03-20 14:22:50 +0000 |
commit | 7afe24e3cb7dfce4fbe80d0941310d39e76f72f8 (patch) | |
tree | ed0f392ceb817c15eba1f6752052774f6efe26dd | |
parent | 1741905c9a27e9278d57073d7887170d6257d0bd (diff) | |
download | emacs-7afe24e3cb7dfce4fbe80d0941310d39e76f72f8.tar.gz emacs-7afe24e3cb7dfce4fbe80d0941310d39e76f72f8.tar.bz2 emacs-7afe24e3cb7dfce4fbe80d0941310d39e76f72f8.zip |
(Info-scroll-down): Add missing WINDOW arg for
pos-visible-in-window-p.
-rw-r--r-- | lisp/info.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/info.el b/lisp/info.el index d81c4d392f8..4b3bbfd42bc 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -1767,7 +1767,7 @@ parent node." current-point t))))) (if (or virtual-end - (pos-visible-in-window-p (point-min) t)) + (pos-visible-in-window-p (point-min) nil t)) (Info-last-preorder) (scroll-down)))) |