1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-28 01:35:32 +00:00

Fine tune how some of the nodes are printed, fix string compressing

This commit is contained in:
Jonas Fonseca 2005-12-29 06:50:51 +01:00 committed by Jonas Fonseca
parent 602d2d8a66
commit 23f21f1924

View File

@ -21,7 +21,7 @@
static void
print_compressed_string(struct dom_string *string)
{
unsigned char escape[2] = "\\";
unsigned char escape[3] = { '\\', '?', 0 };
size_t pos;
for (pos = 0; pos < string->length; pos++) {
@ -142,8 +142,8 @@ struct dom_stack_context_info sgml_parser_test_context_info = {
/* DOM_NODE_ELEMENT */ sgml_parser_test_branch,
/* DOM_NODE_ATTRIBUTE */ sgml_parser_test_id_leaf,
/* DOM_NODE_TEXT */ sgml_parser_test_leaf,
/* DOM_NODE_CDATA_SECTION */ sgml_parser_test_id_leaf,
/* DOM_NODE_ENTITY_REFERENCE */ sgml_parser_test_id_leaf,
/* DOM_NODE_CDATA_SECTION */ sgml_parser_test_leaf,
/* DOM_NODE_ENTITY_REFERENCE */ sgml_parser_test_branch,
/* DOM_NODE_ENTITY */ sgml_parser_test_id_leaf,
/* DOM_NODE_PROC_INSTRUCTION */ sgml_parser_test_id_leaf,
/* DOM_NODE_COMMENT */ sgml_parser_test_leaf,