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

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

[nongnu] elpa/julia-mode c74045a 125/352: emacs mode: change underscores


From: ELPA Syncer
Subject: [nongnu] elpa/julia-mode c74045a 125/352: emacs mode: change underscores back to word characters
Date: Sun, 29 Aug 2021 11:22:28 -0400 (EDT)

branch: elpa/julia-mode
commit c74045ad7855cb45de4c4b2c9a079e23d8e9cf5e
Author: Jeff Bezanson <jeff.bezanson@gmail.com>
Commit: Yichao Yu <yyc1992@gmail.com>

    emacs mode: change underscores back to word characters
---
 julia-mode.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/julia-mode.el b/julia-mode.el
index 6cfdfd9..f537952 100644
--- a/julia-mode.el
+++ b/julia-mode.el
@@ -21,7 +21,7 @@
 
 (defvar julia-mode-syntax-table
   (let ((table (make-syntax-table)))
-    (modify-syntax-entry ?_ "_" table)   ; underscores in words
+    (modify-syntax-entry ?_ "w" table)   ; underscores in words
     (modify-syntax-entry ?@ "_" table)
     (modify-syntax-entry ?. "_" table)
     (modify-syntax-entry ?# "<" table)   ; #  single-line comment start



reply via email to

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