nano

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

commit 036a9d5341cf87b2ec8349cb58605c9534265f4a
parent b885c9c5e96224aba873aa17c3fd996be86c70b4
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date:   Thu, 10 Nov 2005 05:26:37 +0000

comment fixes


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3145 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

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

diff --git a/src/move.c b/src/move.c @@ -139,8 +139,8 @@ void do_page_down(void) } #ifndef DISABLE_JUSTIFY -/* Move up to the last beginning-of-paragraph line before the current - * line. */ +/* Move up to the beginning of the last beginning-of-paragraph line + * before the current line. */ void do_para_begin(bool allow_update) { const filestruct *current_save = openfile->current; @@ -167,11 +167,11 @@ void do_para_begin_void(void) do_para_begin(TRUE); } -/* Move down to the end of a paragraph. Then move one line farther if - * there is such a line, or to the end of the current line if not. A - * line is the last line of a paragraph if it is in a paragraph, and the - * next line either is a beginning-of-paragraph line or isn't in a - * paragraph. */ +/* 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 current line if not. A line is the last line of a + * paragraph if it is in a paragraph, and the next line either is a + * beginning-of-paragraph line or isn't in a paragraph. */ void do_para_end(bool allow_update) { const filestruct *const current_save = openfile->current;