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

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

[nongnu] elpa/julia-mode ecc3f0c 017/352: parsing chains of * or + into


From: ELPA Syncer
Subject: [nongnu] elpa/julia-mode ecc3f0c 017/352: parsing chains of * or + into single calls
Date: Sun, 29 Aug 2021 11:22:07 -0400 (EDT)

branch: elpa/julia-mode
commit ecc3f0c3902d053c4a6f65b747b601ab418b4a8e
Author: Jeff Bezanson <bezanson@post.harvard.edu>
Commit: Yichao Yu <yyc1992@gmail.com>

    parsing chains of * or + into single calls
    making juxtaposition work as multiplication. juxtaposition happens
      in "A B" if A is a numeric literal or B is not a special token
      (e.g. an operator, parentheses, bracket, etc.)
    renaming block(...) to do(...)
    fixing small bug in (conform- )
---
 julia-mode.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/julia-mode.el b/julia-mode.el
index fbfe9e2..49db005 100644
--- a/julia-mode.el
+++ b/julia-mode.el
@@ -44,7 +44,7 @@
      (concat "\\<\\("
          (mapconcat
           'identity
-          '("if" "else" "elseif" "while" "for" "begin" "end" "block"
+          '("if" "else" "elseif" "while" "for" "begin" "end" "do"
             "try" "catch" "return" "local" "type" "function" "quote"
            "typealias" "break" "continue" "struct" "global" "macro"
            "module" "import" "export" "const")



reply via email to

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