Explain that --with-filename does not work with --export options

This commit is contained in:
Martijn van Beurden 2023-05-22 12:02:41 +02:00 committed by GitHub
parent 7761f5472c
commit 9e157b5e1e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 2 deletions

View File

@ -58,7 +58,8 @@ modification time is set to the current time):
**\--with-filename**
: Prefix each output line with the FLAC file name (the default if more
than one FLAC file is specified).
than one FLAC file is specified). This option has no effect for
options exporting to a file, like --export-tags-to.
**\--no-filename**
: Do not prefix each output line with the FLAC file name (the default

View File

@ -62,7 +62,9 @@ static void usage_summary(FILE *out)
fprintf(out, "Options:\n");
fprintf(out, "--preserve-modtime Preserve the original modification time in spite of edits\n");
fprintf(out, "--with-filename Prefix each output line with the FLAC file name\n");
fprintf(out, " (the default if more than one FLAC file is specified)\n");
fprintf(out, " (the default if more than one FLAC file is specified).\n");
fprintf(out, " This option has no effect for options exporting to a\n");
fprintf(out, " file, like --export-tags-to.\n");
fprintf(out, "--no-filename Do not prefix each output line with the FLAC file name\n");
fprintf(out, " (the default if only one FLAC file is specified)\n");
fprintf(out, "--no-utf8-convert Do not convert tags from UTF-8 to local charset,\n");