diff options
author | Georg Brandl <georg@python.org> | 2013-01-09 12:11:27 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2013-01-09 12:11:27 +0100 |
commit | 5d312870aa17cd405fbcff1e117afa8689a563ab (patch) | |
tree | ed486b7f9815dac25b5846eacd856733a5ec9de9 | |
parent | ba85554e9ab6f31652cf2863fd5b79979d77e1a5 (diff) | |
download | pygments-5d312870aa17cd405fbcff1e117afa8689a563ab.tar.gz |
Fix typo in SourcePawn lexer.
-rw-r--r-- | pygments/lexers/other.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/other.py b/pygments/lexers/other.py index fbf7ea32..75a04a8a 100644 --- a/pygments/lexers/other.py +++ b/pygments/lexers/other.py @@ -3159,5 +3159,5 @@ class SourcePawnLexer(RegexLexer): if value in self.SM_TYPES: token = Keyword.Type elif value in self._functions: - tokens = Name.Builtin + token = Name.Builtin yield index, token, value |