branch: elpa/julia-mode commit a4b62e728e7fd348aae530bda75801506a0c02a5 Author: Jeff Bezanson <jeff.bezan...@gmail.com> Commit: Yichao Yu <yyc1...@gmail.com>
misc changes for immutable types, updating comments, adding keyword --- julia-mode.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/julia-mode.el b/julia-mode.el index 0d38d21..3e6932e 100644 --- a/julia-mode.el +++ b/julia-mode.el @@ -70,7 +70,7 @@ "try" "catch" "return" "local" "abstract" "function" "macro" "ccall" "finally" "typealias" "break" "continue" "type" "global" "@\\w+" "module" "using" "import" "export" "const" "let" "bitstype" "do" - "baremodule" "importall") + "baremodule" "importall" "immutable") "\\|") "\\)\\>") 'font-lock-keyword-face) '("\\<\\(true\\|false\\|C_NULL\\|Inf\\|NaN\\|Inf32\\|NaN32\\|nothing\\)\\>" . font-lock-constant-face) @@ -82,7 +82,7 @@ (defconst julia-block-start-keywords (list "if" "while" "for" "begin" "try" "function" "type" "let" "macro" - "quote" "do")) + "quote" "do" "immutable")) (defconst julia-block-other-keywords (list "else" "elseif"))