emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/julia-mode 0f07dca 106/352: add "finally", and other excep


From: ELPA Syncer
Subject: [nongnu] elpa/julia-mode 0f07dca 106/352: add "finally", and other exception improvements
Date: Sun, 29 Aug 2021 11:22:24 -0400 (EDT)

branch: elpa/julia-mode
commit 0f07dcaeaaef70dd571f1af86a2b932a8d3b4b2a
Author: Jeff Bezanson <jeff.bezanson@gmail.com>
Commit: Yichao Yu <yyc1992@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

[Prev in Thread] Current Thread [Next in Thread]