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

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

[nongnu] elpa/swift-mode 5675e1f 167/496: Merge pull request #65 from ck


From: ELPA Syncer
Subject: [nongnu] elpa/swift-mode 5675e1f 167/496: Merge pull request #65 from ckruse/fix_64
Date: Sun, 29 Aug 2021 11:33:29 -0400 (EDT)

branch: elpa/swift-mode
commit 5675e1f50a36fafebaa5c25cf75f734cbf603a35
Merge: fca914a 8db040e
Author: Bozhidar Batsov <bozhidar.batsov@gmail.com>
Commit: Bozhidar Batsov <bozhidar.batsov@gmail.com>

    Merge pull request #65 from ckruse/fix_64
    
    fix: underscores are word characters (Word constituents)
---
 swift-mode.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/swift-mode.el b/swift-mode.el
index 81d6553..1d60fc5 100644
--- a/swift-mode.el
+++ b/swift-mode.el
@@ -591,7 +591,7 @@ You can send text to the REPL process from other buffers 
containing source.
     (modify-syntax-entry ?\\ "\\" table)
 
     ;; Additional symbols
-    (modify-syntax-entry ?_ "_" table)
+    (modify-syntax-entry ?_ "w" table)
     (modify-syntax-entry ?: "_" table)
 
     ;; Comments



reply via email to

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