Skip to content

Commit 39db772

Browse files
committed
lt-tmxproc: -z no-op, always on
1 parent a4b6574 commit 39db772

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lttoolbox/lt_tmxproc.cc

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ int main(int argc, char *argv[])
2727
cli.add_file_arg("input_file");
2828
cli.add_file_arg("output_file");
2929
cli.add_bool_arg('s', "space", "allow a segment to match before space (as well as before punctuation)");
30-
cli.add_bool_arg('z', "null-flush", "flush output on the null character");
30+
cli.add_bool_arg('z', "null-flush", "flush output on the null character (always on, this is a no-op for backwards compatibility)");
3131
cli.parse_args(argc, argv);
3232

3333
TranslationMemoryMode tm_mode = cli.get_bools()["space"] ? tm_space : tm_punct;
3434

3535
FSTProcessor fstp;
36-
fstp.setNullFlush(cli.get_bools()["null-flush"]);
36+
fstp.setNullFlush(true); // cf. description of cli["null-flush"]
3737
FILE* aux = openInBinFile(cli.get_files()[0]);
3838
fstp.load(aux);
3939
fclose(aux);

0 commit comments

Comments
 (0)