branch: elpa/swift-mode commit d047843cef3228219cbf1ec1668d5e348790714e Author: uk-ar <yuuki....@gmail.com> Commit: uk-ar <yuuki....@gmail.com>
Fix token for : --- swift-mode.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swift-mode.el b/swift-mode.el index 3570651..21a6829 100644 --- a/swift-mode.el +++ b/swift-mode.el @@ -777,7 +777,7 @@ You can send text to the REPL process from other buffers containing source. (modify-syntax-entry ?_ "w" table) (modify-syntax-entry ?? "_" table) (modify-syntax-entry ?! "_" table) - (modify-syntax-entry ?: "_" table) + (modify-syntax-entry ?: "." table) ;; Comments (modify-syntax-entry ?/ ". 124b" table)