Commit 140cdbec authored by Mark's avatar Mark Committed by Mouse

converter-example output JER to console

The list of formats that are text output is a hardcoded list that didn't
include JER
parent 67b7788c
......@@ -431,7 +431,8 @@ main(int ac, char *av[]) {
if(isatty(1)) {
const int is_text_output = osyntax == ATS_NONSTANDARD_PLAINTEXT
|| osyntax == ATS_BASIC_XER
|| osyntax == ATS_CANONICAL_XER;
|| osyntax == ATS_CANONICAL_XER
|| osyntax == ATS_BASIC_JER;
if(is_text_output) {
binary_out = stdout;
} else {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment