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-d3aeb78583b8master
parent
df21a2cbdf
commit
d44a005e3d
|
@ -2323,7 +2323,7 @@ void do_spell(void)
|
||||||
}
|
}
|
||||||
#endif /* !DISABLE_SPELLER */
|
#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
|
/* The "indentation" of a line is the whitespace between the quote part
|
||||||
* and the non-whitespace of the line. */
|
* and the non-whitespace of the line. */
|
||||||
size_t indent_length(const char *line)
|
size_t indent_length(const char *line)
|
||||||
|
@ -2350,7 +2350,7 @@ size_t indent_length(const char *line)
|
||||||
|
|
||||||
return len;
|
return len;
|
||||||
}
|
}
|
||||||
#endif /* !NANO_SMALL */
|
#endif /* !NANO_SMALL || !DISABLE_JUSTIFY */
|
||||||
|
|
||||||
#ifndef DISABLE_JUSTIFY
|
#ifndef DISABLE_JUSTIFY
|
||||||
/* justify_format() replaces blanks with spaces and multiple spaces by 1
|
/* justify_format() replaces blanks with spaces and multiple spaces by 1
|
||||||
|
@ -3030,7 +3030,7 @@ void do_justify(bool full_justify)
|
||||||
totsize -= indent_len;
|
totsize -= indent_len;
|
||||||
|
|
||||||
/* We're just about to tack the next line onto this one. If
|
/* 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] != ' ') {
|
if (line_len > 0 && current->data[line_len - 1] != ' ') {
|
||||||
line_len++;
|
line_len++;
|
||||||
current->data = charealloc(current->data, line_len + 1);
|
current->data = charealloc(current->data, line_len + 1);
|
||||||
|
|
Loading…
Reference in New Issue