comparison lisp/info.el @ 16498:791b96e8f25e

(Info-scroll-up): Doc fix.
author Richard M. Stallman <rms@gnu.org>
date Sat, 02 Nov 1996 07:39:07 +0000
parents de67834f456d
children a0cfcb9f8033
comparison
equal deleted inserted replaced
16497:6ac6575b349d 16498:791b96e8f25e
1230 (goto-char (point-max)))) 1230 (goto-char (point-max))))
1231 (t (error "No previous nodes")))) 1231 (t (error "No previous nodes"))))
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.
1235 Once you scroll far enough in a node that its menu appears on the screen, 1235 Once you scroll far enough in a node that its menu appears on the screen
1236 the next scroll moves into its first subnode. When you scroll past 1236 but after point, the next scroll moves into its first subnode.
1237 the end of a node, that goes to the next node or back up to the parent node." 1237
1238 When you scroll past the end of a node, that goes to the next node; if
1239 this node has no successor, it moves to the parent node's successor,
1240 and so on. If point is inside the menu of a node, it moves to
1241 subnode indicated by the following menu item. (That case won't
1242 normally 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)))
1241 (set-window-start (selected-window) (point))) 1247 (set-window-start (selected-window) (point)))
1242 (let ((virtual-end (save-excursion 1248 (let ((virtual-end (save-excursion