branch: elpa/julia-mode
commit efce160c440e6421f270a13936409621784e4453
Author: Jeff Bezanson <[email protected]>
Commit: Yichao Yu <[email protected]>
adding bitstype syntax
allowing supertype expression to reference the type being defined
e.g. Complex <: Number{Complex}
---
julia-mode.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/julia-mode.el b/julia-mode.el
index 887e181..d2e91a6 100644
--- a/julia-mode.el
+++ b/julia-mode.el
@@ -47,7 +47,7 @@
'("if" "else" "elseif" "while" "for" "begin" "end"
"try" "catch" "return" "local" "type" "function"
"typealias" "break" "continue" "struct" "global"
- "module" "import" "export" "const" "let")
+ "module" "import" "export" "const" "let" "bitstype")
"\\|") "\\)\\>")
'font-lock-keyword-face)
'("\\\\\\s-*\".*?\"" . font-lock-string-face)))