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/parse/parser.rs | |
| parent | 01cd53baf0ea241b17132e857ba356b9b9a14908 (diff) | |
| download | rust-b8cfd5c4142c28dde844678f2d506ccaf058dc78.tar.gz rust-b8cfd5c4142c28dde844678f2d506ccaf058dc78.zip | |
librustc: Long lines. rs=rustbot
Diffstat (limited to 'src/libsyntax/parse/parser.rs')
| -rw-r--r-- | src/libsyntax/parse/parser.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/libsyntax/parse/parser.rs b/src/libsyntax/parse/parser.rs index bebced8f38a..86907706bbf 100644 --- a/src/libsyntax/parse/parser.rs +++ b/src/libsyntax/parse/parser.rs @@ -155,7 +155,9 @@ macro_rules! maybe_whole ( _ => () }) ; (pair_empty $p:expr, $constructor:ident) => ( match copy $p.token { - INTERPOLATED(token::$constructor(ref x)) => { $p.bump(); return (~[], (*x)); } + INTERPOLATED(token::$constructor(ref x)) => { + $p.bump(); return (~[], (*x)); + } _ => () }) |
