nano

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

commit 666644efbcd386361d8397cf078e7d032ce21571
parent 15540051aca220b21603b2a592ca27326f01c91c
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date:   Mon, 14 Mar 2005 20:32:00 +0000

fix more inaccurate comments


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

Diffstat:
Msrc/nano.c | 10+++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/nano.c b/src/nano.c @@ -2356,12 +2356,12 @@ size_t indent_length(const char *line) * (except it maintains up to 2 after a character in punct optionally * followed by a character in brackets, and removes all from the end). * - * justify_format() might make line->data shorter, and change the actual - * pointer with null_at(). + * justify_format() might make paragraph->data shorter, and change the + * actual pointer with null_at(). * - * justify_format() will not look at the first skip characters of line. - * skip should be at most strlen(line->data). The character at - * line[skip + 1] must not be blank. */ + * justify_format() will not look at the first skip characters of + * paragraph. skip should be at most strlen(paragraph->data). The + * character at paragraph[skip + 1] must not be blank. */ void justify_format(filestruct *paragraph, size_t skip) { char *end, *new_end, *new_paragraph_data;