Reenabled regexps on Windows.
[claws.git] / src / common / string_match.c
index 4b311105c509e16192c20f67a54bc81bc210b44b..b9b7a1531f14e24e3e934c183c8ecd7ee1377b88 100644 (file)
@@ -53,9 +53,7 @@ gchar *string_remove_match(gchar *buf, gint buflen, gchar * txt, regex_t *preg)
        regmatch_t match;
        int notfound;
        gint i, j ,k;
-#ifdef G_OS_WIN32
-       return txt;
-#else
+
        if (!preg)
                return txt;
        if (*txt != 0x00) {
@@ -87,6 +85,5 @@ gchar *string_remove_match(gchar *buf, gint buflen, gchar * txt, regex_t *preg)
                return buf;             
        }
        return txt;
-#endif
 }