1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-11-04 08:17:17 -05:00

Fix logic in update_number_of_lines() and tell parse_sgml() src is complete

This commit is contained in:
Jonas Fonseca 2006-01-02 14:59:54 +01:00 committed by Jonas Fonseca
parent 2664a11a68
commit 0071ea696c

View File

@ -24,7 +24,7 @@ update_number_of_lines(struct dom_stack *stack)
struct sgml_parser *parser = stack->contexts[0]->data;
int lines;
if (parser->flags ^ SGML_PARSER_COUNT_LINES)
if (!(parser->flags & SGML_PARSER_COUNT_LINES))
return 0;
lines = get_sgml_parser_line_number(parser);
@ -292,7 +292,7 @@ main(int argc, char *argv[])
add_dom_stack_context(&parser->stack, NULL, &sgml_parser_test_context_info);
root = parse_sgml(parser, &source);
root = parse_sgml(parser, &source, 1);
if (root) {
assert(parser->stack.depth == 1);