fix(lean-flycheck): make column optional when detecting error/messages

fix #194
This commit is contained in:
Soonho Kong 2014-09-14 20:23:25 -07:00
parent d47412d201
commit df588d6ba0

View file

@ -24,12 +24,12 @@
:command ,(lean-flycheck-command) :command ,(lean-flycheck-command)
:error-patterns :error-patterns
((error line-start "FLYCHECK_BEGIN ERROR\n" ((error line-start "FLYCHECK_BEGIN ERROR\n"
(file-name) ":" line ":" column ": error: " (file-name) ":" line ":" (? column ":") " error: "
(minimal-match (minimal-match
(message (one-or-more (one-or-more not-newline) "\n") )) (message (one-or-more (one-or-more not-newline) "\n") ))
"FLYCHECK_END" line-end) "FLYCHECK_END" line-end)
(warning line-start "FLYCHECK_BEGIN WARNING\n" (warning line-start "FLYCHECK_BEGIN WARNING\n"
(file-name) ":" line ":" column ": warning " (file-name) ":" line ":" (? column ":") " warning "
(minimal-match (minimal-match
(message (one-or-more (one-or-more not-newline) "\n") )) (message (one-or-more (one-or-more not-newline) "\n") ))
"FLYCHECK_END" line-end)) "FLYCHECK_END" line-end))