branch: elpa/swift-mode
commit 48a3a2571536a02c89173177f19320431d3b2926
Author: Chris Barrett <chris.d.barr...@me.com>
Commit: Chris Barrett <chris.d.barr...@me.com>

    Correctly font-lock backtick-enclosed identifiers in let bindings
---
 swift-mode.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/swift-mode.el b/swift-mode.el
index 1e4fbf0..72616d5 100644
--- a/swift-mode.el
+++ b/swift-mode.el
@@ -99,7 +99,7 @@
                               (or ,@swift-mode--val-decl-keywords)
                               eow
                               (+ space)
-                              (group bow (+ word) eow))
+                              (group (? "`") bow (+ word) eow (? "`")))
                         t)
           (list 1 font-lock-variable-name-face))
 

Reply via email to