fix(emacs/lean-flycheck): should accept error messages with empty lines
This commit is contained in:
parent
1c9992800f
commit
b0a7888346
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@
|
|||
((error line-start "FLYCHECK_BEGIN ERROR" (? "\r") "\n"
|
||||
(file-name) ":" line ":" (? column ":") " error: "
|
||||
(minimal-match
|
||||
(message (one-or-more (one-or-more not-newline) (? "\r") "\n")))
|
||||
(message (one-or-more (zero-or-more not-newline) (? "\r") "\n")))
|
||||
"FLYCHECK_END" (? "\r") line-end)
|
||||
(warning line-start "FLYCHECK_BEGIN WARNING" (? "\r") "\n"
|
||||
(file-name) ":" line ":" (? column ":") " warning "
|
||||
|
|
Loading…
Reference in a new issue