fix regex for warning.

This commit is contained in:
Kazu Yamamoto 2010-03-31 23:39:00 +09:00
parent 71e0f54889
commit 95218aae07
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@
'("\\.l?hs$" ghc-flymake-init flymake-simple-cleanup flymake-get-real-file-name))
(defvar ghc-flymake-err-line-patterns
'("^\\(.*\\.l?hs\\):\\([0-9]+\\):\\([0-9]+\\):\\(.+\\)" 1 2 3 4))
'("^\\(.*\\.l?hs\\):\\([0-9]+\\):\\([0-9]+\\): \\(.+\\)" 1 2 3 4))
(add-to-list 'flymake-allowed-file-name-masks
ghc-flymake-allowed-file-name-masks)