mirror of
https://github.com/Orc/discount.git
synced 2026-09-25 04:10:00 +03:00
Remove an unused variable from tableblock(), comment it.
This commit is contained in:
+4
-1
@@ -652,11 +652,14 @@ quoteblock(Paragraph *p)
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* A table block starts with a table header (see istable()), and continues
|
||||
* until EOF or a line that /doesn't/ contain a |.
|
||||
*/
|
||||
static Line *
|
||||
tableblock(Paragraph *p)
|
||||
{
|
||||
Line *t, *q;
|
||||
int bars;
|
||||
|
||||
for ( t = p->text; t && (q = t->next); t = t->next ) {
|
||||
if ( !memchr(T(q->text), '|', S(q->text)) ) {
|
||||
|
||||
Reference in New Issue
Block a user