branch: elpa/julia-mode commit 1642a6e2bbea9d2b626e11d12b910a116bd2329e Author: Jeff Bezanson <bezan...@post.harvard.edu> Commit: Yichao Yu <yyc1...@gmail.com>
keyword change: renaming type to abstract and struct to type --- julia-mode.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/julia-mode.el b/julia-mode.el index a996020..f554473 100644 --- a/julia-mode.el +++ b/julia-mode.el @@ -47,15 +47,15 @@ (mapconcat 'identity '("if" "else" "elseif" "while" "for" "begin" "end" "quote" - "try" "catch" "return" "local" "type" "function" "macro" - "typealias" "break" "continue" "struct" "global" "@\\w+" + "try" "catch" "return" "local" "abstract" "function" "macro" + "typealias" "break" "continue" "type" "global" "@\\w+" "module" "import" "export" "const" "let" "bitstype") "\\|") "\\)\\>") 'font-lock-keyword-face) '("\\\\\\s-*\".*?\"" . font-lock-string-face))) (defconst julia-block-start-keywords - (list "if" "while" "for" "begin" "try" "function" "struct" "let" "macro" + (list "if" "while" "for" "begin" "try" "function" "type" "let" "macro" "quote")) (defconst julia-block-other-keywords