xz: Move the description of --block-size in --long-help.

This commit is contained in:
Lasse Collin 2011-04-11 09:57:30 +03:00
parent cd3086ff44
commit ec7e3dbad7
1 changed files with 4 additions and 4 deletions

View File

@ -1128,10 +1128,6 @@ message_help(bool long_help)
" `auto' (default), `xz', `lzma', and `raw'\n"
" -C, --check=CHECK integrity check type: `none' (use with caution),\n"
" `crc32', `crc64' (default), or `sha256'"));
puts(_(
" --block-size=SIZE\n"
" when compressing to the .xz format, start a new block\n"
" after every SIZE bytes of input; 0=disabled (default)"));
}
puts(_(
@ -1143,6 +1139,10 @@ message_help(bool long_help)
" does not affect decompressor memory requirements"));
if (long_help) {
puts(_(
" --block-size=SIZE\n"
" when compressing to the .xz format, start a new block\n"
" after every SIZE bytes of input; 0=disabled (default)"));
puts(_( // xgettext:no-c-format
" --memlimit-compress=LIMIT\n"
" --memlimit-decompress=LIMIT\n"