1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-07-28 00:21:53 +03:00

speedup some node selection operations, this can have a significant impact

* xpath.c: speedup some node selection operations, this can
  have a significant impact on DocBook Norm's stylesheets
* nanohttp.c: someone reported that SOCKLEN_T may not be defined
  make sure it's always the case
* debugXML.c: distinguish CDATA and comments in ls operations
Daniel
This commit is contained in:
Daniel Veillard
2002-03-13 10:03:35 +00:00
parent 61f261749f
commit 75be013085
4 changed files with 86 additions and 2 deletions

View File

@ -1148,7 +1148,7 @@ xmlLsOneNode(FILE *output, xmlNodePtr node) {
fprintf(output, "t");
break;
case XML_CDATA_SECTION_NODE:
fprintf(output, "c");
fprintf(output, "C");
break;
case XML_ENTITY_REF_NODE:
fprintf(output, "e");