From 3f32dc86dc860b33bd1e783195321ebb0db0f2d6 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sun, 2 Oct 1994 08:36:08 +0000 Subject: [PATCH] (Info-scroll-down, Info-scroll-up): Doc fixes. --- lisp/info.el | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/lisp/info.el b/lisp/info.el index 2396ba62bb4..8c78aa1d6e1 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -1116,7 +1116,10 @@ N is the digit argument used to invoke this command." (t (error "No previous nodes")))) (defun Info-scroll-up () - "Read the next screen. If end of buffer is visible, go to next entry." + "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 back to the parent node." (interactive) (if (or (< (window-start) (point-min)) (> (window-start) (point-max))) @@ -1132,7 +1135,11 @@ N is the digit argument used to invoke this command." (scroll-up)))) (defun Info-scroll-down () - "Read the previous screen. If start of buffer is visible, go to last entry." + "Scroll one screenful back in Info, considering all nodes as one sequence. +If you are within the menu of a node, this follows the previous +menu item, so that you scroll through all the subnodes, ordered +as if they appeared in place of the menu. When you scroll past +the beginning of a node, that goes back to the parent node." (interactive) (if (or (< (window-start) (point-min)) (> (window-start) (point-max)))