branch: elpa/julia-mode
commit 9f990bb73542e2326eff0535d54a0c1aa8a5951a
Author: Jamie Brandon <[email protected]>
Commit: GitHub <[email protected]>
Handle string escapes
[Before](https://i.imgur.com/j7UsXNd.png)
[After](https://i.imgur.com/BApO2QS.png)
---
julia-mode.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/julia-mode.el b/julia-mode.el
index dba9e38..212972e 100644
--- a/julia-mode.el
+++ b/julia-mode.el
@@ -104,6 +104,7 @@ This function provides equivalent functionality, but makes
no efforts to optimis
(modify-syntax-entry ?' "." table)
(modify-syntax-entry ?\" "\"" table)
(modify-syntax-entry ?` "\"" table)
+ (modify-syntax-entry ?\\ "\\" table)
(modify-syntax-entry ?. "." table)
(modify-syntax-entry ?? "." table)
@@ -116,7 +117,6 @@ This function provides equivalent functionality, but makes
no efforts to optimis
(modify-syntax-entry ?< "." table)
(modify-syntax-entry ?> "." table)
(modify-syntax-entry ?% "." table)
- (modify-syntax-entry ?\\ "." table)
table)
"Syntax table for `julia-mode'.")