diff options
| author | Patrick Walton <pcwalton@mimiga.net> | 2012-12-04 21:13:02 -0800 |
|---|---|---|
| committer | Patrick Walton <pcwalton@mimiga.net> | 2012-12-04 21:13:02 -0800 |
| commit | b8cfd5c4142c28dde844678f2d506ccaf058dc78 (patch) | |
| tree | 9f947bc89c7faa03d1f5455f52c9dee5a69e6580 /src/libsyntax/ext/tt/macro_parser.rs | |
| parent | 01cd53baf0ea241b17132e857ba356b9b9a14908 (diff) | |
| download | rust-b8cfd5c4142c28dde844678f2d506ccaf058dc78.tar.gz rust-b8cfd5c4142c28dde844678f2d506ccaf058dc78.zip | |
librustc: Long lines. rs=rustbot
Diffstat (limited to 'src/libsyntax/ext/tt/macro_parser.rs')
| -rw-r--r-- | src/libsyntax/ext/tt/macro_parser.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/libsyntax/ext/tt/macro_parser.rs b/src/libsyntax/ext/tt/macro_parser.rs index e782a183430..ad4677942ac 100644 --- a/src/libsyntax/ext/tt/macro_parser.rs +++ b/src/libsyntax/ext/tt/macro_parser.rs @@ -185,7 +185,9 @@ fn nameize(p_s: parse_sess, ms: ~[matcher], res: ~[@named_match]) match m { {node: match_tok(_), span: _} => (), {node: match_seq(ref more_ms, _, _, _, _), span: _} => { - for (*more_ms).each() |next_m| { n_rec(p_s, *next_m, res, ret_val) }; + for (*more_ms).each() |next_m| { + n_rec(p_s, *next_m, res, ret_val) + }; } {node: match_nonterminal(bind_name, _, idx), span: sp} => { if ret_val.contains_key(bind_name) { |
