nano

nano with my custom patches
git clone git://bsandro.tech/nano
Log | Files | Refs | README | LICENSE

commit 4a70c1393f27b7fa2633a3fc86ac3125c84bd594
parent 66cd897dc41536b2758c394c5e3d12434654b2fc
Author: Benno Schulenberg <bensberg@telfort.nl>
Date:   Sun, 25 Nov 2018 12:24:57 +0100

tweaks: improve a comment, to better match the changed code

Diffstat:
Msrc/move.c | 7+++----
1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/src/move.c b/src/move.c @@ -180,10 +180,9 @@ void do_para_begin(filestruct **line) *line = (*line)->prev; } -/* Move down to the beginning of the last line of the current paragraph; - * then move down one line farther if there is such a line, or to the - * end of the last line if not. Return FALSE when we stepped to the - * line beyond the last line of the paragraph, and TRUE otherwise. */ +/* Move down to the last line of the current paragraph; then move down + * one line farther if there is such a line. Return FALSE when we could + * step one line further, and TRUE otherwise. */ bool do_para_end(filestruct **line) { while ((*line)->next != NULL && !inpar(*line))