summaryrefslogtreecommitdiff
path: root/pygments
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2013-01-20 08:35:56 +0100
committerGeorg Brandl <georg@python.org>2013-01-20 08:35:56 +0100
commit9742ca00ebfebb319046035c65c0179ac279effc (patch)
tree9fa85d19d1cc8ddf42f6f13057e578a1b37f7c9e /pygments
parente17df1c862714dfd15e02b18c273881af78bde6c (diff)
downloadpygments-git-9742ca00ebfebb319046035c65c0179ac279effc.tar.gz
Check for missing aliases in "make check".
Diffstat (limited to 'pygments')
-rw-r--r--pygments/lexers/compiled.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/compiled.py b/pygments/lexers/compiled.py
index e0b86684..7513a4e1 100644
--- a/pygments/lexers/compiled.py
+++ b/pygments/lexers/compiled.py
@@ -2194,7 +2194,7 @@ class AdaLexer(RegexLexer):
r'Duration|File_Mode|File_Type|Float|Generator|Integer|Long_Float|'
r'Long_Integer|Long_Long_Float|Long_Long_Integer|Natural|Positive|'
r'Reference_Type|Short_Float|Short_Integer|Short_Short_Float|'
- r'Short_Short_Integer|String|Wide_Character|Wide_String)\b',
+ r'Short_Short_Integer|String|Wide_Character|Wide_String)\b',
Keyword.Type),
(r'(and(\s+then)?|in|mod|not|or(\s+else)|rem)\b', Operator.Word),
(r'generic|private', Keyword.Declaration),