summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--TODO5
-rw-r--r--xsltproc/xsltproc.c2
3 files changed, 10 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 336794d8..de6fb7c4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Fri Mar 1 10:14:07 CET 2002 Daniel Veillard <daniel@veillard.com>
+
+ * xsltproc/xsltproc.c: similar to #72663 and #72658, don't memdump
+ unless compiled explicitely with memory debugging switched on
+ * TODO: refreshed a bit
+
Fri Feb 22 23:44:57 CET 2002 Daniel Veillard <daniel@veillard.com>
* python/generator.py python/libxslt.c: changes for the 'usual'
diff --git a/TODO b/TODO
index f43cc31b..b2cbd432 100644
--- a/TODO
+++ b/TODO
@@ -4,9 +4,6 @@
* *
********
-Doc:
- - manpage and doc for xsltproc
-
Design:
- seems that saving back XSLT stylesheet from a compiled form might
be a bit ugly ... Yes forget about it, it's just twaeked to the extreme
@@ -119,6 +116,8 @@ Doc:
- put a page at http://xmlsoft.org/XSLT/
- generate/transform the DocBook to HTML
- add HTML to package
+ - manpage and doc for xsltproc
+
Error handling:
-> check the version stuff, design a separate module for error interfacing
diff --git a/xsltproc/xsltproc.c b/xsltproc/xsltproc.c
index 16591e3e..798cf8c4 100644
--- a/xsltproc/xsltproc.c
+++ b/xsltproc/xsltproc.c
@@ -616,7 +616,9 @@ main(int argc, char **argv)
done:
xsltCleanupGlobals();
xmlCleanupParser();
+#ifdef WITH_MEM_DEBUG
xmlMemoryDump();
+#endif
return(errorno);
}