summaryrefslogtreecommitdiff
path: root/pygments/lexer.py
diff options
context:
space:
mode:
authorgbrandl <devnull@localhost>2007-05-06 18:38:04 +0200
committergbrandl <devnull@localhost>2007-05-06 18:38:04 +0200
commit51828346e2b9740b2594947103589fb64db08291 (patch)
treeae77b93b245b9880d5ce14409755a1d0bfba217d /pygments/lexer.py
parent0b6c1be09d077aba79d7b82f56a9e555f9afc3fe (diff)
downloadpygments-51828346e2b9740b2594947103589fb64db08291.tar.gz
[svn] A few corrections.
Diffstat (limited to 'pygments/lexer.py')
-rw-r--r--pygments/lexer.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/pygments/lexer.py b/pygments/lexer.py
index e5f32ee2..c53dad0f 100644
--- a/pygments/lexer.py
+++ b/pygments/lexer.py
@@ -396,7 +396,8 @@ class RegexLexerMeta(LexerMeta):
itokens = []
for istate in tdef2:
assert istate != state, 'circular state ref %r' % istate
- itokens.extend(cls._process_state(unprocessed, processed, istate))
+ itokens.extend(cls._process_state(unprocessed,
+ processed, istate))
processed[new_state] = itokens
new_state = (new_state,)
elif isinstance(tdef2, tuple):