A simple patch for 1.37.1 would be:
diff --git a/src/filetypes.c b/src/filetypes.c
index 3d2a1e3a..2b17fa66 100644
--- a/src/filetypes.c
+++ b/src/filetypes.c
@@ -1306,7 +1306,7 @@ gboolean filetypes_parse_error_message(GeanyFiletype *ft,
const gchar *message,
if (!g_regex_match(ft->priv->error_regex, message, 0, &minfo))
{
g_match_info_free(minfo);
- return FALSE;
+ return TRUE;
}
n_match_groups = g_match_info_get_match_count(minfo);
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/2817#issuecomment-850914558