branch: elpa/julia-mode
commit 4b41b85f058c2ea2ceaa9a9b050e8c4dac9556fa
Author: Rafael Fourquet <fourquet.raf...@gmail.com>
Commit: Yichao Yu <yyc1...@gmail.com>

    julia-mode.el: `f(x) == something` does not define a function
---
 julia-mode.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/julia-mode.el b/julia-mode.el
index c18fd2c..d3d5a2a 100644
--- a/julia-mode.el
+++ b/julia-mode.el
@@ -159,7 +159,8 @@ This function provides equivalent functionality, but makes 
no efforts to optimis
               (not (any "(" ")"))))
       ")"
       (* space)
-      "="))
+      "="
+      (not (any "="))))
 
 (defconst julia-type-regex
   (rx symbol-start (or "immutable" "type" "abstract") (1+ space) (group (1+ 
(or word (syntax symbol))))))

Reply via email to