First tex_parser() successful pass
This commit is contained in:
parent
41185418ed
commit
a0e8963fb2
|
@ -37,7 +37,7 @@ int parse_table(const char *table_source, size_t len, struct table_s *table, str
|
||||||
switch (where_stack[tex_level]) {
|
switch (where_stack[tex_level]) {
|
||||||
case IN_UNDEF:
|
case IN_UNDEF:
|
||||||
if (c == '\\') {
|
if (c == '\\') {
|
||||||
zfree(tag); tag = NULL;
|
tag = zfree_null(tag);
|
||||||
where_stack[tex_level] = IN_TAG;
|
where_stack[tex_level] = IN_TAG;
|
||||||
} else if (c == '%') {
|
} else if (c == '%') {
|
||||||
where_stack[++tex_level] = IN_COMMENT;
|
where_stack[++tex_level] = IN_COMMENT;
|
||||||
|
|
Loading…
Reference in New Issue