summaryrefslogtreecommitdiff
path: root/pygments/lexers/julia.py
diff options
context:
space:
mode:
Diffstat (limited to 'pygments/lexers/julia.py')
-rw-r--r--pygments/lexers/julia.py2
1 files changed, 1 insertions, 1 deletions
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),