branch: elpa/julia-mode
commit 0f07dcaeaaef70dd571f1af86a2b932a8d3b4b2a
Author: Jeff Bezanson <jeff.bezan...@gmail.com>
Commit: Yichao Yu <yyc1...@gmail.com>

    add "finally", and other exception improvements
    
    closes #364, closes #988
    
    rename jl_raise to jl_throw to match throw() in julia
    throw() initiates a new exception, add rethrow() to continue propagating
    
    now we record backtrace data on every throw(), but only do the much more
    expensive part when backtrace() is called later
---
 julia-mode.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/julia-mode.el b/julia-mode.el
index d9d1984..e4d7789 100644
--- a/julia-mode.el
+++ b/julia-mode.el
@@ -88,7 +88,7 @@
   (list "else" "elseif"))
 
 (defconst julia-block-end-keywords
-  (list "end" "else" "elseif" "catch"))
+  (list "end" "else" "elseif" "catch" "finally"))
 
 (defun julia-member (item lst)
   (if (null lst)

Reply via email to