summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-11-02 07:39:07 +0000
committerRichard M. Stallman <rms@gnu.org>1996-11-02 07:39:07 +0000
commite037d32eb4ea5035c9c627e9783e6f31de2efd25 (patch)
tree61044b154f12620b383c97d2db645ca66225e3fa /lisp
parentc7f1de155f2f099bdce3551c2f1e9422c99e4738 (diff)
downloademacs-e037d32eb4ea5035c9c627e9783e6f31de2efd25.tar.gz
(Info-scroll-up): Doc fix.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/info.el12
1 files changed, 9 insertions, 3 deletions
diff --git a/lisp/info.el b/lisp/info.el
index 733cd65398b..5ec81da6ca8 100644
--- a/lisp/info.el
+++ b/lisp/info.el
@@ -1232,9 +1232,15 @@ N is the digit argument used to invoke this command."
(defun Info-scroll-up ()
"Scroll one screenful forward in Info, considering all nodes as one sequence.
-Once you scroll far enough in a node that its menu appears on the screen,
-the next scroll moves into its first subnode. When you scroll past
-the end of a node, that goes to the next node or back up to the parent node."
+Once you scroll far enough in a node that its menu appears on the screen
+but after point, the next scroll moves into its first subnode.
+
+When you scroll past the end of a node, that goes to the next node; if
+this node has no successor, it moves to the parent node's successor,
+and so on. If point is inside the menu of a node, it moves to
+subnode indicated by the following menu item. (That case won't
+normally result from this command, but can happen in other ways.)"
+
(interactive)
(if (or (< (window-start) (point-min))
(> (window-start) (point-max)))