branch: elpa/julia-mode
commit 3b5f6b0f8cbdd213467532d68d0258295c279464
Author: Jeff Bezanson <[email protected]>
Commit: Yichao Yu <[email protected]>
make "using Base" implicit, and add baremodule. closes #1522
---
julia-mode.el | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/julia-mode.el b/julia-mode.el
index c4e1b44..d9d1984 100644
--- a/julia-mode.el
+++ b/julia-mode.el
@@ -69,7 +69,8 @@
'("if" "else" "elseif" "while" "for" "begin" "end" "quote"
"try" "catch" "return" "local" "abstract" "function" "macro"
"ccall"
"finally" "typealias" "break" "continue" "type" "global" "@\\w+"
- "module" "using" "import" "export" "const" "let" "bitstype" "do")
+ "module" "using" "import" "export" "const" "let" "bitstype" "do"
+ "baremodule" "importall")
"\\|") "\\)\\>")
'font-lock-keyword-face)
'("\\<\\(true\\|false\\|C_NULL\\|Inf\\|NaN\\|Inf32\\|NaN32\\|nothing\\)\\>" .
font-lock-constant-face)