Signed-off-by: Karel Zak <kzak@redhat.com>
*
* Enable/disable line separator printing. This is useful if you want to
* re-printing the same line more than once (e.g. progress bar). Don't use it
- * if you're not sure. This option may be ignored for JSON output.
+ * if you're not sure.
*
* Returns: 0 on success, negative number in case of an error.
*/
if (tb->indent_last_sep)
fput_indent(tb);
fputs(last ? "}" : "},", tb->out);
- fputs(linesep(tb), tb->out);
+ if (!tb->no_linesep)
+ fputs(linesep(tb), tb->out);
} else if (tb->no_linesep == 0 && last_in_table == 0)
fputs(linesep(tb), tb->out);