summaryrefslogtreecommitdiff
path: root/pygments/lexers/math.py
diff options
context:
space:
mode:
authorMarc 'BlackJack' Rintsch <marc@rintsch.de>2012-06-10 19:17:44 +0200
committerMarc 'BlackJack' Rintsch <marc@rintsch.de>2012-06-10 19:17:44 +0200
commit43318e3c4bdd5936e3fb53903e50d31cbff43fb5 (patch)
tree20d2a77920e06be933ffc54a89a4f38a18835dd3 /pygments/lexers/math.py
parent536281349f1bbc4ce87ff6c0e5be2400bad90504 (diff)
parent69c0e4e07cd9004c026238315fb1d6cff73a278b (diff)
downloadpygments-43318e3c4bdd5936e3fb53903e50d31cbff43fb5.tar.gz
Merge main development.
Diffstat (limited to 'pygments/lexers/math.py')
-rw-r--r--pygments/lexers/math.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/math.py b/pygments/lexers/math.py
index 7ae7d6b2..db51cd62 100644
--- a/pygments/lexers/math.py
+++ b/pygments/lexers/math.py
@@ -50,7 +50,7 @@ class JuliaLexer(RegexLexer):
# keywords
(r'(begin|while|for|in|return|break|continue|'
r'macro|quote|let|if|elseif|else|try|catch|end|'
- r'bitstype|ccall)\b', Keyword),
+ r'bitstype|ccall|do)\b', Keyword),
(r'(local|global|const)\b', Keyword.Declaration),
(r'(module|import|export)\b', Keyword.Reserved),
(r'(Bool|Int|Int8|Int16|Int32|Int64|Uint|Uint8|Uint16|Uint32|Uint64'