From 02a1bc6114b05715619eed310922df563e85b2fe Mon Sep 17 00:00:00 2001 From: Spencer Lyon Date: Wed, 1 Oct 2014 15:43:37 +0000 Subject: updated julia multiline comment so comment can start on same line as #= --- pygments/lexers/julia.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pygments/lexers/julia.py') diff --git a/pygments/lexers/julia.py b/pygments/lexers/julia.py index 395bf865..a9836ee2 100644 --- a/pygments/lexers/julia.py +++ b/pygments/lexers/julia.py @@ -42,7 +42,7 @@ class JuliaLexer(RegexLexer): 'root': [ (r'\n', Text), (r'[^\S\n]+', Text), - (r'#=\s*\n', Comment.Multiline, "blockcomment"), + (r'#=', Comment.Multiline, "blockcomment"), (r'#.*$', Comment), (r'[]{}:(),;[@]', Punctuation), (r'\\\n', Text), -- cgit v1.2.1