bug-texinfo
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: scroll-backward with cursor-movement-scrolls=On


From: Benno Schulenberg
Subject: Re: scroll-backward with cursor-movement-scrolls=On
Date: Fri, 21 Mar 2008 16:31:27 +0100
User-agent: KMail/1.9.9

Benno Schulenberg wrote:
>   if (backward_move_node_structure (window, behaviour))
>       move_to_new_line (0, 0, window);
>   else

To make things symmetrical, it would be nice to place the cursor on 
the last line when the end of the document is reached.  This can be 
done by replacing in _scroll_forward() in session.c

  forward_move_node_structure (window, behaviour)

with

  if (forward_move_node_structure (window, behaviour))
    info_end_of_node (window, 1, 0);

For beauty's sake, the move_to_new_line (0, 0, window) in 
_scroll_backward() is then better replaced with 
info_beginning_of_node(window, 1, 0).

Benno




reply via email to

[Prev in Thread] Current Thread [Next in Thread]