branch: elpa/flymake-collection
commit dbe0d67b64aed6e701b6b7b8164c7900bc5a615d
Author: Mohsin Kaleem <mohk...@kisara.moe>
Commit: Mohsin Kaleem <mohk...@kisara.moe>

    (bug): Fix wrong face reference for diag-id
---
 checkers/flymake-rest-proselint.el  | 2 +-
 checkers/flymake-rest-shellcheck.el | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/checkers/flymake-rest-proselint.el 
b/checkers/flymake-rest-proselint.el
index db060aa96e..0918054955 100644
--- a/checkers/flymake-rest-proselint.el
+++ b/checkers/flymake-rest-proselint.el
@@ -58,6 +58,6 @@ See URL `http://proselint.com/'."
                 ("suggestion" :note)
                 ("warning" :warning)
                 ((or "error" _) :error))
-              (concat (propertize .check 'face 'flymake-diag-id!) " " 
.message))))))
+              (concat (propertize .check 'face 'flymake-rest-diag-id) " " 
.message))))))
 
 (provide 'flymake-rest-proselint)
diff --git a/checkers/flymake-rest-shellcheck.el 
b/checkers/flymake-rest-shellcheck.el
index d376d5fa52..6f57811d86 100644
--- a/checkers/flymake-rest-shellcheck.el
+++ b/checkers/flymake-rest-shellcheck.el
@@ -61,6 +61,6 @@ See URL `https://github.com/koalaman/shellcheck/'."
                 ("error" :error)
                 ("warning" :warning)
                 ((or "info" "style" _) :note))
-              (concat (propertize (format "SC%s" .code) 'face 
'flymake-diag-id!) " " .message))))))
+              (concat (propertize (format "SC%s" .code) 'face 
'flymake-rest-diag-id) " " .message))))))
 
 (provide 'flymake-rest-shellcheck)

Reply via email to