branch: elpa/kotlin-mode
commit 0e542ae2f78420618df8b0123dfe168a37dce333
Merge: 002dd1497c 472ae23d6a
Author: Gregg Hernandez <[email protected]>
Commit: GitHub <[email protected]>

    Merge pull request #37 from cjfuller/fix-star-projected-types
    
    Fix syntax highlighting of star-projected types
---
 kotlin-mode.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kotlin-mode.el b/kotlin-mode.el
index dda9cdc2ac..143cc880e4 100644
--- a/kotlin-mode.el
+++ b/kotlin-mode.el
@@ -214,7 +214,7 @@
 
     ;; Types
     (,(rx-to-string
-      `(and bow upper (group (* (or word "<" ">" "." "?" "!"))))
+      `(and bow upper (group (* (or word "<" ">" "." "?" "!" "*"))))
       t)
      0 font-lock-type-face)
 

Reply via email to