emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/swift-mode 471d158 490/496: Highlight actor


From: ELPA Syncer
Subject: [nongnu] elpa/swift-mode 471d158 490/496: Highlight actor
Date: Sun, 29 Aug 2021 11:34:34 -0400 (EDT)

branch: elpa/swift-mode
commit 471d1580a64bf114f1434f10a478ae38363ae4fc
Author: taku0 <mxxouy6x3m_github@tatapa.org>
Commit: taku0 <mxxouy6x3m_github@tatapa.org>

    Highlight actor
---
 swift-mode-font-lock.el | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/swift-mode-font-lock.el b/swift-mode-font-lock.el
index dc85f1b..a844999 100644
--- a/swift-mode-font-lock.el
+++ b/swift-mode-font-lock.el
@@ -212,7 +212,7 @@ This function does not search beyond LIMIT."
   (skip-syntax-backward "w_")
   (and (< (point) limit)
        (looking-at
-        "\\<\\(func\\|enum\\|struct\\|class\\|protocol\\|extension\\)\\>")))
+        
"\\<\\(func\\|enum\\|struct\\|class\\|protocol\\|extension\\|actor\\)\\>")))
 
 (defun swift-mode:property-access-pos-p (pos limit)
   "Return t if POS is just before the property name of a member expression.
@@ -540,7 +540,8 @@ Return nil otherwise."
 (defconst swift-mode:declaration-keywords
   '("associatedtype" "class" "deinit" "enum" "extension" "fileprivate" "func"
     "import" "init" "inout" "internal" "let" "open" "operator" "private"
-    "protocol" "public" "some" "static" "struct" "subscript" "typealias" "var")
+    "protocol" "public" "some" "static" "struct" "subscript" "typealias" "var"
+    "actor")
   "Keywords used in declarations.")
 
 (defconst swift-mode:statement-keywords



reply via email to

[Prev in Thread] Current Thread [Next in Thread]