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

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

[nongnu] elpa/julia-mode 84d9a19 147/352: Fix emacs highlighting of symb


From: ELPA Syncer
Subject: [nongnu] elpa/julia-mode 84d9a19 147/352: Fix emacs highlighting of symbols that contain keywords.
Date: Sun, 29 Aug 2021 11:22:33 -0400 (EDT)

branch: elpa/julia-mode
commit 84d9a19e360f53e7d5970ad0df436ff6bbcc2ce3
Author: Wilfred Hughes <me@wilfred.me.uk>
Commit: Yichao Yu <yyc1992@gmail.com>

    Fix emacs highlighting of symbols that contain keywords.
    
    Previously, symbols such as `prepend!` or `net_required_for` incorrectly
    had `end` and `for` highlighted.
---
 julia-mode.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/julia-mode.el b/julia-mode.el
index 503f045..bd2456a 100644
--- a/julia-mode.el
+++ b/julia-mode.el
@@ -94,7 +94,8 @@
      "try" "catch" "return" "local" "abstract" "function" "macro" "ccall"
      "finally" "typealias" "break" "continue" "type" "global"
      "module" "using" "import" "export" "const" "let" "bitstype" "do"
-     "baremodule" "importall" "immutable")))
+     "baremodule" "importall" "immutable")
+   'symbols))
 
 (defconst julia-font-lock-keywords
   (list



reply via email to

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