diff --git a/flycheck-coala.el b/flycheck-coala.el index 270f3c7..533163c 100644 --- a/flycheck-coala.el +++ b/flycheck-coala.el @@ -35,9 +35,9 @@ "A checker using coala. See URL `https://coala.io'." :command ("coala" "--format" "{line}:{column}:{severity_str}:{message}" "--find-config" "--limit-files" source-original) - :error-patterns ((error line-start (or "None" line) ":" (or "None" column) ":MAJOR:" (message) line-end) - (warning line-start (or "None" line) ":" (or "None" column) ":NORMAL:" (message) line-end) - (info line-start (or "None" line) ":" (or "None" column) ":INFO:" (message) line-end)) + :error-patterns ((error (or "None" line) ":" (or "None" column) ":MAJOR:" (message)) + (warning (or "None" line) ":" (or "None" column) ":NORMAL:" (message)) + (info (or "None" line) ":" (or "None" column) ":INFO:" (message))) :modes (c-mode csharp-mode c++-mode