summaryrefslogtreecommitdiff
path: root/ext/tidy/tidy.c
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2003-12-01 22:10:46 +0000
committerIlia Alshanetsky <iliaa@php.net>2003-12-01 22:10:46 +0000
commit089aa3639dcff33a081ccda84dd7f754fcacb5af (patch)
tree78eb1bee9bc128acb1232e07ade892944e39dfde /ext/tidy/tidy.c
parent93e0d690eea2b033a478905baf9746ada9f365d2 (diff)
downloadphp-git-089aa3639dcff33a081ccda84dd7f754fcacb5af.tar.gz
Remove debug code.
Diffstat (limited to 'ext/tidy/tidy.c')
-rw-r--r--ext/tidy/tidy.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/ext/tidy/tidy.c b/ext/tidy/tidy.c
index c67e29c271..baaf38f1d0 100644
--- a/ext/tidy/tidy.c
+++ b/ext/tidy/tidy.c
@@ -984,8 +984,9 @@ static void tidy_add_default_properities(PHPTidyObj *obj, tidy_obj_type type TSR
tidyNodeGetText(TG(tdoc)->doc, obj->node, &buf);
ADD_PROPERITY_STRING(obj->std.properties, value, buf.bp);
tidyBufFree(&buf);
-
- fprintf(stderr, "type: %d\n",tidyNodeGetType(obj->node));
+
+/* fprintf(stderr, "type: %d\n",tidyNodeGetType(obj->node)); */
+
ADD_PROPERITY_STRING(obj->std.properties, name, tidyNodeGetName(obj->node));
ADD_PROPERITY_LONG(obj->std.properties, type, tidyNodeGetType(obj->node));
switch(tidyNodeGetType(obj->node)) {