branch: elpa/julia-mode
commit 873639b96a86dfb8473d62223953b140a0581dd0
Author: Jeff Bezanson <jeff.bezan...@gmail.com>
Commit: Yichao Yu <yyc1...@gmail.com>

    emacs mode: make @ a word character again
    
    this is really part of the identifier, and needed for proper coloring
    in some emacs versions
---
 julia-mode.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/julia-mode.el b/julia-mode.el
index 96302f0..1fa1271 100644
--- a/julia-mode.el
+++ b/julia-mode.el
@@ -22,7 +22,7 @@
 (defvar julia-mode-syntax-table
   (let ((table (make-syntax-table)))
     (modify-syntax-entry ?_ "w" table)   ; underscores in words
-    (modify-syntax-entry ?@ "_" table)
+    (modify-syntax-entry ?@ "w" table)
     (modify-syntax-entry ?. "_" table)
     (modify-syntax-entry ?# "<" table)   ; #  single-line comment start
     (modify-syntax-entry ?\n ">" table)  ; \n single-line comment end

Reply via email to