From: Eshel Yaron <me@eshelyaron.com>
Date: Sat, 10 Sep 2022 12:54:02 +0000 (+0300)
Subject: FIXED: handle more missing color terms
X-Git-Tag: v0.2.0~12
X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3717572348342d25ce5eed66b74eda7ce8e46eb8;p=sweep.git

FIXED: handle more missing color terms
---

diff --git a/sweep.el b/sweep.el
index ffa427b..c461402 100644
--- a/sweep.el
+++ b/sweep.el
@@ -757,6 +757,8 @@ module name, F is a functor name and N is its arity."
          (put-text-property beg end 'font-lock-face sweep-syntax-error-face))
         ("unused_import"       (put-text-property beg end 'font-lock-face sweep-unused-import-face))
         ("undefined_import"    (put-text-property beg end 'font-lock-face sweep-undefined-import-face))
+        ("html_attribute"      (put-text-property beg end 'font-lock-face sweep-html-attribute-face))
+        ("html_call"           (put-text-property beg end 'font-lock-face sweep-html-call-face))
         ("dict_tag"            (put-text-property beg end 'font-lock-face sweep-dict-tag-face))
         ("dict_key"            (put-text-property beg end 'font-lock-face sweep-dict-key-face))
         ("dict_sep"            (put-text-property beg end 'font-lock-face sweep-dict-sep-face))
@@ -793,6 +795,7 @@ module name, F is a functor name and N is its arity."
         ("clause"              nil)
         ("directive"           nil)
         ("body"                nil)
+        ("html"                nil)
         ("parentheses"         nil)
         ("term"                nil)
         ("expanded"            nil)