Index: /branches/1.3/.cvsignore
===================================================================
--- /branches/1.3/.cvsignore	(revision 599)
+++ /branches/1.3/.cvsignore	(revision 600)
@@ -32,2 +32,3 @@
 run-tests.php
 structinfo.m4
+autom4te.cache
Index: /branches/1.3/coverager/coverager.tpl.php
===================================================================
--- /branches/1.3/coverager/coverager.tpl.php	(revision 599)
+++ /branches/1.3/coverager/coverager.tpl.php	(revision 600)
@@ -199,5 +199,5 @@
 	$dir_html = htmlspecialchars($dir);
 	echo <<<EOS
-	<a href="?">$l_root</a> <a href="?path={$dir_url}">{$dir_html}</a>/<b>{$filename}</b><br />
+	<a href="?">$l_root</a> <a href="?path={$dir_url}">{$dir_html}</a>/<strong>{$filename}</strong><br />
 EOS;
 
Index: /branches/1.3/utils.c
===================================================================
--- /branches/1.3/utils.c	(revision 599)
+++ /branches/1.3/utils.c	(revision 600)
@@ -732,6 +732,5 @@
 int xc_vtrace(const char *fmt, va_list args) /* {{{ */
 {
-	vfprintf(stderr, fmt, args);
-	return 0;
+	return vfprintf(stderr, fmt, args);
 }
 /* }}} */
@@ -739,9 +738,10 @@
 {
 	va_list args;
+	int ret;
 
 	va_start(args, fmt);
-	xc_vtrace(fmt, args);
+	ret = xc_vtrace(fmt, args);
 	va_end(args);
-	return 0;
-}
-/* }}} */
+	return ret;
+}
+/* }}} */
Index: /branches/1.3/utils.h
===================================================================
--- /branches/1.3/utils.h	(revision 599)
+++ /branches/1.3/utils.h	(revision 600)
@@ -4,17 +4,42 @@
 #ifdef DEBUG
 #	define IFDEBUG(x) (x)
-#	define TRACE(fmt, ...) \
-	xc_trace("%s:%d: " fmt "\r\n", __FILE__, __LINE__, __VA_ARGS__)
+int xc_vtrace(const char *fmt, va_list args);
 int xc_trace(const char *fmt, ...) ZEND_ATTRIBUTE_PTR_FORMAT(printf, 1, 2);
+
+#	ifdef ZEND_WIN32
+static inline int TRACE(const char *fmt, ...) 
+{
+	va_list args;
+	int ret;
+
+	va_start(args, fmt);
+	ret = xc_vtrace(fmt, args);
+	va_end(args);
+	return ret;
+}
+#	else
+#		define TRACE(fmt, ...) \
+		xc_trace("%s:%d: " fmt "\r\n", __FILE__, __LINE__, __VA_ARGS__)
+#	endif /* ZEND_WIN32 */
 #   undef NDEBUG
 #   undef inline
 #   define inline
-#else
-#	define TRACE(fmt, ...) do { } while (0)
+#else /* DEBUG */
+
+#	ifdef ZEND_WIN32
+static inline int TRACE_DUMMY(const char *fmt, ...)
+{
+	return 0;
+}
+#		define TRACE 1 ? 0 : TRACE_DUMMY
+#	else
+#		define TRACE(fmt, ...) do { } while (0)
+#	endif /* ZEND_WIN32 */
+
 #	define IFDEBUG(x) do { } while (0)
 #   ifndef NDEBUG
 #       define NDEBUG
 #   endif
-#endif
+#endif /* DEBUG */
 #include <assert.h>
 
