branch: elpa/flycheck
commit 796869e7091c27d6133413f89a37230dac11538d
Author: soverysour <[email protected]>
Commit: Bozhidar Batsov <[email protected]>

    Handle unknown identifiers for Chicken Scheme
---
 flycheck.el | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/flycheck.el b/flycheck.el
index b80f29371c..6f36e2e60c 100644
--- a/flycheck.el
+++ b/flycheck.el
@@ -12044,6 +12044,13 @@ See URL `https://call-cc.org/'."
             "Warning: " (zero-or-more not-newline) ":\n"
             (one-or-more (any space)) "(" (file-name) ":" line ") " (message)
             line-end)
+   (error line-start
+          "Error: Module `" (one-or-more not-newline) "' has unresolved 
identifiers\n"
+          (zero-or-more space) "In file `" (file-name) "':"
+          line-end)
+   (error line-start
+          (zero-or-more space) (message) "\n" (zero-or-more space) "On line " 
line
+          line-end)
    (error line-start "Error: (line " line ") " (message) line-end)
    (error line-start "Syntax error: (" (file-name) ":" line ")"
           (zero-or-more not-newline) " - "

Reply via email to