aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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."
1232 1232
1233(defun Info-scroll-up () 1233(defun Info-scroll-up ()
1234 "Scroll one screenful forward in Info, considering all nodes as one sequence. 1234 "Scroll one screenful forward in Info, considering all nodes as one sequence.
1235Once you scroll far enough in a node that its menu appears on the screen, 1235Once you scroll far enough in a node that its menu appears on the screen
1236the next scroll moves into its first subnode. When you scroll past 1236but after point, the next scroll moves into its first subnode.
1237the end of a node, that goes to the next node or back up to the parent node." 1237
1238When you scroll past the end of a node, that goes to the next node; if
1239this node has no successor, it moves to the parent node's successor,
1240and so on. If point is inside the menu of a node, it moves to
1241subnode indicated by the following menu item. (That case won't
1242normally result from this command, but can happen in other ways.)"
1243
1238 (interactive) 1244 (interactive)
1239 (if (or (< (window-start) (point-min)) 1245 (if (or (< (window-start) (point-min))
1240 (> (window-start) (point-max))) 1246 (> (window-start) (point-max)))