summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Malmaud <malmaud@gmail.com>2015-05-25 23:23:02 -0400
committerJon Malmaud <malmaud@gmail.com>2015-05-25 23:23:02 -0400
commit6d9b6cf5a899c5cde30955a208782f36221e4e7d (patch)
tree160cd1c3e71d0cc9708841141e6f3499ca4554d3
parent2a5de6abfce2c8ea1cee477149221686cec3a4dd (diff)
downloadpygments-6d9b6cf5a899c5cde30955a208782f36221e4e7d.tar.gz
Change Julia lexer to use multiline mode.
-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 b7f35b1d..cf93af0d 100644
--- a/pygments/lexers/julia.py
+++ b/pygments/lexers/julia.py
@@ -30,7 +30,7 @@ class JuliaLexer(RegexLexer):
filenames = ['*.jl']
mimetypes = ['text/x-julia', 'application/x-julia']
- flags = re.UNICODE
+ flags = re.MULTILINE | re.UNICODE
builtins = [
'exit', 'whos', 'edit', 'load', 'is', 'isa', 'isequal', 'typeof', 'tuple',