aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1994-10-02 08:36:08 +0000
committerRichard M. Stallman1994-10-02 08:36:08 +0000
commit3f32dc86dc860b33bd1e783195321ebb0db0f2d6 (patch)
tree192c6f855705f244e9f17051292499db7706fcb8
parent9f803d0d12548c2e5facc359846598f0a5c01271 (diff)
downloademacs-3f32dc86dc860b33bd1e783195321ebb0db0f2d6.tar.gz
emacs-3f32dc86dc860b33bd1e783195321ebb0db0f2d6.zip
(Info-scroll-down, Info-scroll-up): Doc fixes.
-rw-r--r--lisp/info.el11
1 files 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."
1116 (t (error "No previous nodes")))) 1116 (t (error "No previous nodes"))))
1117 1117
1118(defun Info-scroll-up () 1118(defun Info-scroll-up ()
1119 "Read the next screen. If end of buffer is visible, go to next entry." 1119 "Scroll one screenful forward in Info, considering all nodes as one sequence.
1120Once you scroll far enough in a node that its menu appears on the screen,
1121the next scroll moves into its first subnode. When you scroll past
1122the end of a node, that goes back to the parent node."
1120 (interactive) 1123 (interactive)
1121 (if (or (< (window-start) (point-min)) 1124 (if (or (< (window-start) (point-min))
1122 (> (window-start) (point-max))) 1125 (> (window-start) (point-max)))
@@ -1132,7 +1135,11 @@ N is the digit argument used to invoke this command."
1132 (scroll-up)))) 1135 (scroll-up))))
1133 1136
1134(defun Info-scroll-down () 1137(defun Info-scroll-down ()
1135 "Read the previous screen. If start of buffer is visible, go to last entry." 1138 "Scroll one screenful back in Info, considering all nodes as one sequence.
1139If you are within the menu of a node, this follows the previous
1140menu item, so that you scroll through all the subnodes, ordered
1141as if they appeared in place of the menu. When you scroll past
1142the beginning of a node, that goes back to the parent node."
1136 (interactive) 1143 (interactive)
1137 (if (or (< (window-start) (point-min)) 1144 (if (or (< (window-start) (point-min))
1138 (> (window-start) (point-max))) 1145 (> (window-start) (point-max)))