Mercurial > emacs
changeset 9222:b18f51df31b3
(Info-scroll-down, Info-scroll-up): Doc fixes.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 02 Oct 1994 08:36:08 +0000 |
parents | 3cc865a9c0cf |
children | da3ee9703b44 |
files | lisp/info.el |
diffstat | 1 files changed, 9 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/info.el Sun Oct 02 08:35:34 1994 +0000 +++ b/lisp/info.el Sun Oct 02 08:36:08 1994 +0000 @@ -1116,7 +1116,10 @@ (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 @@ (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)))