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

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

[nongnu] elpa/julia-mode 1642a6e 041/352: keyword change: renaming type


From: ELPA Syncer
Subject: [nongnu] elpa/julia-mode 1642a6e 041/352: keyword change: renaming type to abstract and struct to type
Date: Sun, 29 Aug 2021 11:22:12 -0400 (EDT)

branch: elpa/julia-mode
commit 1642a6e2bbea9d2b626e11d12b910a116bd2329e
Author: Jeff Bezanson <bezanson@post.harvard.edu>
Commit: Yichao Yu <yyc1992@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



reply via email to

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