Remove an unused variable from tableblock(), comment it.

This commit is contained in:
David Parsons
2009-08-02 10:40:06 -07:00
parent 958b18dfcc
commit ba815654fc
+4 -1
View File
@@ -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)) ) {