branch: elpa/julia-mode commit 7de3b0c79722d77820bf891fbfe581cc1d2ae63e Author: Tamas K. Papp <tkp...@gmail.com> Commit: GitHub <nore...@github.com>
Remove highlighting for :: and <:. (#112) Removing this appears to be innocuous (ie nothing is changed). Fixes #53. --- julia-mode.el | 3 --- 1 file changed, 3 deletions(-) diff --git a/julia-mode.el b/julia-mode.el index c14f341..2282bab 100644 --- a/julia-mode.el +++ b/julia-mode.el @@ -266,9 +266,6 @@ ;; font-lock-builtin-face intentionally unused since any name from ;; names(Base) can be aliased in a baremodule. (list - ;; Ensure :: and <: aren't highlighted, so we don't confuse ::Foo with :foo. - ;; (in Emacs, keywords don't overlap). - (cons (rx (or "::" "<:")) ''default) ;; Highlight quoted symbols before keywords, so :function is not ;; highlighted as a keyword. (list julia-quoted-symbol-regex 1 ''julia-quoted-symbol-face)