make the #ifdef around indent_len() match that of its prototype, so that

we can compile with NANO_SMALL and !DISABLE_JUSTIFY again; also add a
comment fix


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2390 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
This commit is contained in:
David Lawrence Ramsey 2005-03-18 05:20:54 +00:00
parent df21a2cbdf
commit d44a005e3d
1 changed files with 3 additions and 3 deletions

View File

@ -2323,7 +2323,7 @@ void do_spell(void)
}
#endif /* !DISABLE_SPELLER */
#ifndef NANO_SMALL
#if !defined(NANO_SMALL) || !defined(DISABLE_JUSTIFY)
/* The "indentation" of a line is the whitespace between the quote part
* and the non-whitespace of the line. */
size_t indent_length(const char *line)
@ -2350,7 +2350,7 @@ size_t indent_length(const char *line)
return len;
}
#endif /* !NANO_SMALL */
#endif /* !NANO_SMALL || !DISABLE_JUSTIFY */
#ifndef DISABLE_JUSTIFY
/* justify_format() replaces blanks with spaces and multiple spaces by 1
@ -3030,7 +3030,7 @@ void do_justify(bool full_justify)
totsize -= indent_len;
/* We're just about to tack the next line onto this one. If
* this line isn't blank, make sure it ends in a space. */
* this line isn't empty, make sure it ends in a space. */
if (line_len > 0 && current->data[line_len - 1] != ' ') {
line_len++;
current->data = charealloc(current->data, line_len + 1);