branch: elpa/haskell-tng-mode commit f8d2b91c660f50913920198d9759d92dff7c6b48 Author: Tseen She <ts33n....@gmail.com> Commit: Tseen She <ts33n....@gmail.com>
miss some false positive ghc errors --- haskell-tng-compile.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/haskell-tng-compile.el b/haskell-tng-compile.el index b83f980..9e6f7e0 100644 --- a/haskell-tng-compile.el +++ b/haskell-tng-compile.el @@ -22,7 +22,7 @@ ;; TODO generic flycheck integration https://emacs.stackexchange.com/questions/51894 (defvar haskell-tng-compilation-error-regexp-alist - (let ((file '(: (group (+ any) ".hs"))) + (let ((file '(: (group (+ (not (any "{" "}" "(" ")" "[" "]" "\n"))) ".hs"))) (num '(: (group (+ digit)))) (err '(: ": " (group "error") ":")) (war '(: ": " (group "warning") ":")))