branch: elpa/sweeprolog commit 3717572348342d25ce5eed66b74eda7ce8e46eb8 Author: Eshel Yaron <m...@eshelyaron.com> Commit: Eshel Yaron <m...@eshelyaron.com>
FIXED: handle more missing color terms --- sweep.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sweep.el b/sweep.el index ffa427bdf3..c461402eae 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)