summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2013-01-09 12:11:27 +0100
committerGeorg Brandl <georg@python.org>2013-01-09 12:11:27 +0100
commit5d312870aa17cd405fbcff1e117afa8689a563ab (patch)
treeed486b7f9815dac25b5846eacd856733a5ec9de9
parentba85554e9ab6f31652cf2863fd5b79979d77e1a5 (diff)
downloadpygments-5d312870aa17cd405fbcff1e117afa8689a563ab.tar.gz
Fix typo in SourcePawn lexer.
-rw-r--r--pygments/lexers/other.py2
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