nano

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

commit af40eeaa06da5716b0bbd3817d33e56f7fa7561c
parent b159605a5b0f2ad06fcb32128334cc2b6c02aa21
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date:   Mon, 14 Mar 2005 04:31:44 +0000

more comment fixes


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

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

diff --git a/src/nano.c b/src/nano.c @@ -2352,7 +2352,7 @@ size_t indent_length(const char *line) #endif /* !NANO_SMALL */ #ifndef DISABLE_JUSTIFY -/* justify_format() replaces tabs with spaces and multiple spaces by 1 +/* justify_format() replaces blanks with spaces and multiple spaces by 1 * (except it maintains 2 after a non-repeated character in punct * followed by a character in brackets, and removes all at the end of * the line). @@ -2362,7 +2362,7 @@ size_t indent_length(const char *line) * * 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 whitespace. */ + * line[skip + 1] must not be blank. */ void justify_format(filestruct *paragraph, size_t skip) { char *end, *new_end, *new_paragraph_data;