diff options
Diffstat (limited to 'pygments/lexer.py')
-rw-r--r-- | pygments/lexer.py | 3 |
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): |