branch: elpa/julia-mode
commit 0bd625b70ad1549035dc57f95e65d380df7736c9
Author: Jeff Bezanson <[email protected]>
Commit: Yichao Yu <[email protected]>
misc. stuff:
"do" is no longer a reserved word; fix julia-mode
adding >>>=
randmatstat should use randn
doing a garbage collection after startup phase
---
julia-mode.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/julia-mode.el b/julia-mode.el
index f667320..03f3b39 100644
--- a/julia-mode.el
+++ b/julia-mode.el
@@ -44,7 +44,7 @@
(concat "\\<\\("
(mapconcat
'identity
- '("if" "else" "elseif" "while" "for" "begin" "end" "do"
+ '("if" "else" "elseif" "while" "for" "begin" "end"
"try" "catch" "return" "local" "type" "function"
"typealias" "break" "continue" "struct" "global"
"module" "import" "export" "const")