branch: elpa/julia-mode commit c4a75b43e0af254fa6b62142d7184400e728cc7d Author: Rafael Fourquet <fourquet.raf...@gmail.com> Commit: Rafael Fourquet <fourquet.raf...@gmail.com>
update short function syntax w.r.t. spaces Spaces are not allowed anymore between function name and parameter list. --- julia-mode.el | 2 -- 1 file changed, 2 deletions(-) diff --git a/julia-mode.el b/julia-mode.el index f4b35a9..737e44a 100644 --- a/julia-mode.el +++ b/julia-mode.el @@ -229,9 +229,7 @@ This function provides equivalent functionality, but makes no efforts to optimis (rx line-start (* (or space "@inline" "@noinline")) symbol-start (* (seq (1+ (or word (syntax symbol))) ".")) ; module name (group (1+ (or word (syntax symbol)))) - (* space) (? "{" (* (not (any "}"))) "}") - (* space) "(" (* (or (seq "(" (* (not (any "(" ")"))) ")") (not (any "(" ")"))))