We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 707fb45 commit 8354763Copy full SHA for 8354763
table.c
@@ -2356,10 +2356,14 @@ feed_table_block_tag(struct table *tbl,
2356
if (mode->indent_level < MAX_INDENT_LEVEL)
2357
tbl->indent -= INDENT_INCR;
2358
}
2359
+ if (tbl->indent < 0)
2360
+ tbl->indent = 0;
2361
offset = tbl->indent;
2362
if (cmd == HTML_DT) {
2363
if (mode->indent_level > 0 && mode->indent_level <= MAX_INDENT_LEVEL)
2364
offset -= INDENT_INCR;
2365
+ if (offset < 0)
2366
+ offset = 0;
2367
2368
if (tbl->indent > 0) {
2369
check_minimum0(tbl, 0);
0 commit comments