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

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

[nongnu] elpa/julia-mode 873639b 127/352: emacs mode: make @ a word char


From: ELPA Syncer
Subject: [nongnu] elpa/julia-mode 873639b 127/352: emacs mode: make @ a word character again
Date: Sun, 29 Aug 2021 11:22:29 -0400 (EDT)

branch: elpa/julia-mode
commit 873639b96a86dfb8473d62223953b140a0581dd0
Author: Jeff Bezanson <jeff.bezanson@gmail.com>
Commit: Yichao Yu <yyc1992@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

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