Benno Schulenberg wrote:
> When doing <PageUp> at the top node of a document, the cursor now
> gets placed at the bottom. This is quite confusing when the
> first node of a document is longer than the screen. For example
> with gawk: info gawk, PageUp, PageUp, ... And also in the help
> text: info info, h, PageUp, PageUp, ...
To stop this behaviour, in session.c, in the function
_scroll_backward, the line
backward_move_node_structure (window, behaviour);
could be replaced with
if (backward_move_node_structure (window, behaviour))
move_to_new_line (0, 0, window);
else
Benno