[Github-comments] [geany/geany] Compiler error regular expression does match user defined expression and default (#2817)
torsten-rupp
notifications at xxxxx
Sat May 29 23:40:29 UTC 2021
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
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.geany.org/pipermail/github-comments/attachments/20210529/bc03d0d4/attachment.htm>
More information about the Github-comments
mailing list