1
1

options: let --fill no longer imply automatic hard-wrapping

Now --fill only sets the target width for hard-wrapping and justifying,
but automatic hard-wrapping itself is switched on with --breaklonglines.
Этот коммит содержится в:
Benno Schulenberg 2019-01-25 19:25:39 +01:00
родитель 556c0a3865
Коммит 894aff0816
2 изменённых файлов: 2 добавлений и 6 удалений

Просмотреть файл

@ -878,7 +878,7 @@ void usage(void)
print_opt("-p", "--preserve", N_("Preserve XON (^Q) and XOFF (^S) keys"));
#ifdef ENABLED_WRAPORJUSTIFY
print_opt(_("-r <#cols>"), _("--fill=<#cols>"),
N_("Set hard-wrapping point at column #cols"));
N_("Set width for hard-wrap and justify"));
#endif
#ifdef ENABLE_SPELLER
if (!ISSET(RESTRICTED))
@ -2271,9 +2271,6 @@ int main(int argc, char **argv)
}
#ifdef ENABLE_NANORC
fill_used = TRUE;
#endif
#ifdef ENABLE_WRAPPING
SET(BREAK_LONG_LINES);
#endif
break;
#endif

Просмотреть файл

@ -1111,8 +1111,7 @@ void parse_rcfile(FILE *rcstream, bool syntax_only)
rcfile_error(N_("Requested fill size \"%s\" is invalid"),
option);
fill = -COLUMNS_FROM_EOL;
} else
UNSET(NO_WRAP);
}
free(option);
} else
#endif