branch: elpa/flycheck
commit ea36cd459fc166e0394410778e98b60572b2950c
Author: Cyril Arnould <cyril.arno...@outlook.com>
Commit: Bozhidar Batsov <bozhi...@batsov.dev>

    Update vhdl-ghdl error-patterns
    
    The error message format has changed going from ghdl 4.0.0 to
    4.1.0. This also allows differentiating between errors and warnings.
---
 CHANGES.rst | 1 +
 flycheck.el | 3 ++-
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/CHANGES.rst b/CHANGES.rst
index 7ef8f628a4..76c96d77c4 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -26,6 +26,7 @@ Changes
 ----------
 
 - **(Breaking)** [#2066]: Remove support for versions of ``stylelint`` older 
than v14.
+- Update error-patterns for ghdl 4.1.0
 
 34.1 (2024-02-18)
 ======================
diff --git a/flycheck.el b/flycheck.el
index 66428e2419..b32ae6bce2 100644
--- a/flycheck.el
+++ b/flycheck.el
@@ -12782,7 +12782,8 @@ See URL `https://github.com/ghdl/ghdl'."
             (option "--ieee=" flycheck-ghdl-ieee-library concat)
             source)
   :error-patterns
-  ((error line-start (file-name) ":" line ":" column ": " (message) line-end))
+  ((warning line-start (file-name) ":" line ":" column ":warning: " (message) 
line-end)
+   (error line-start (file-name) ":" line ":" column ":error: " (message) 
line-end))
   :modes vhdl-mode)
 
 (flycheck-def-option-var flycheck-xml-xmlstarlet-xsd-path nil xml-xmlstarlet

Reply via email to