I was calling show_flags() [tabular output] for theme -VV instead of mkd_flags_are() [streaming]

This commit is contained in:
jessica parsons
2024-09-08 15:16:03 -07:00
parent 4f2cd0c572
commit cc42e7ed69
+4 -2
View File
@@ -626,8 +626,10 @@ main(int argc, char **argv)
if ( show_version ) {
fprintf(stderr, "theme+discount %s\n", markdown_version);
if ( show_version > 1 )
show_flags(1, 0, flags);
if ( show_version > 1 ) {
mkd_flags_are(stderr, flags, 0);
putc('\n', stderr);
}
exit(0);
}