diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | TODO | 5 | ||||
-rw-r--r-- | xsltproc/xsltproc.c | 2 |
3 files changed, 10 insertions, 3 deletions
@@ -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' @@ -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); } |