mirror of
https://github.com/rkd77/elinks.git
synced 2025-01-03 14:57:44 -05:00
Fix sgml-parser so it compiles
The test does however segfault in the incremental parsing test.
This commit is contained in:
parent
3f8dee5a5e
commit
26e8e52f23
@ -252,6 +252,7 @@ main(int argc, char *argv[])
|
|||||||
enum sgml_parser_type type = SGML_PARSER_STREAM;
|
enum sgml_parser_type type = SGML_PARSER_STREAM;
|
||||||
enum dom_code code = 0;
|
enum dom_code code = 0;
|
||||||
enum dom_config_flag normalize_flags = 0;
|
enum dom_config_flag normalize_flags = 0;
|
||||||
|
struct dom_config config;
|
||||||
int normalize = 0;
|
int normalize = 0;
|
||||||
int dump = 0;
|
int dump = 0;
|
||||||
int complete = 1;
|
int complete = 1;
|
||||||
@ -310,7 +311,7 @@ main(int argc, char *argv[])
|
|||||||
|
|
||||||
parser->error_func = sgml_error_function;
|
parser->error_func = sgml_error_function;
|
||||||
if (normalize)
|
if (normalize)
|
||||||
add_dom_config_normalizer(&parser->stack, normalize_flags);
|
add_dom_config_normalizer(&parser->stack, &config, normalize_flags);
|
||||||
else if (!dump)
|
else if (!dump)
|
||||||
add_dom_stack_context(&parser->stack, NULL, &sgml_parser_test_context_info);
|
add_dom_stack_context(&parser->stack, NULL, &sgml_parser_test_context_info);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user