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

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

[nongnu] elpa/julia-mode ef8a44c 037/352: replacing ` with : for symbol


From: ELPA Syncer
Subject: [nongnu] elpa/julia-mode ef8a44c 037/352: replacing ` with : for symbol and expression quoting
Date: Sun, 29 Aug 2021 11:22:11 -0400 (EDT)

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

    replacing ` with : for symbol and expression quoting
    adding quote..end syntax for quoting blocks
    lots of little changes everywhere!
---
 julia-mode.el | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/julia-mode.el b/julia-mode.el
index 04c9bc4..f3ba1a3 100644
--- a/julia-mode.el
+++ b/julia-mode.el
@@ -45,8 +45,8 @@
      (concat "\\<\\("
          (mapconcat
           'identity
-          '("if" "else" "elseif" "while" "for" "begin" "end"
-            "try" "catch" "return" "local" "type" "function"
+          '("if" "else" "elseif" "while" "for" "begin" "end" "quote"
+            "try" "catch" "return" "local" "type" "function" "macro"
            "typealias" "break" "continue" "struct" "global"
            "module" "import" "export" "const" "let" "bitstype")
           "\\|") "\\)\\>")
@@ -54,7 +54,8 @@
     '("\\\\\\s-*\".*?\"" . font-lock-string-face)))
 
 (defconst julia-block-start-keywords
-  (list "if" "while" "for" "begin" "try" "function" "struct" "let"))
+  (list "if" "while" "for" "begin" "try" "function" "struct" "let" "macro"
+       "quote"))
 
 (defconst julia-block-other-keywords
   (list "else" "elseif"))



reply via email to

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