diff options
author | gbrandl <devnull@localhost> | 2007-05-06 18:38:04 +0200 |
---|---|---|
committer | gbrandl <devnull@localhost> | 2007-05-06 18:38:04 +0200 |
commit | 51828346e2b9740b2594947103589fb64db08291 (patch) | |
tree | ae77b93b245b9880d5ce14409755a1d0bfba217d /pygments/lexer.py | |
parent | 0b6c1be09d077aba79d7b82f56a9e555f9afc3fe (diff) | |
download | pygments-51828346e2b9740b2594947103589fb64db08291.tar.gz |
[svn] A few corrections.
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): |