]> git.saurik.com Git - wxWidgets.git/blobdiff - src/regex/regc_color.c
Fixed setup.h logic again
[wxWidgets.git] / src / regex / regc_color.c
index 5376af2ed5f17d43db13d6700eae77a346a841ac..3e93f8eae988896fff52b7995cac533f850616b9 100644 (file)
@@ -769,12 +769,16 @@ static void
 dumpchr(chr c,
                FILE *f)
 {
+#if wxUSE_UNICODE
+    fprintf(f, "Debugging not implemented in unicode mode");
+#else
        if (c == '\\')
                fprintf(f, "\\\\");
        else if (c > ' ' && c <= '~')
                putc((char) c, f);
        else
                fprintf(f, "\\u%04lx", (long) c);
+#endif
 }
 
 #endif   /* REG_DEBUG */