about summary refs log tree commit diff
path: root/src/libsyntax/parse
diff options
context:
space:
mode:
authorPatrick Walton <pcwalton@mimiga.net>2012-12-04 21:13:02 -0800
committerPatrick Walton <pcwalton@mimiga.net>2012-12-04 21:13:02 -0800
commitb8cfd5c4142c28dde844678f2d506ccaf058dc78 (patch)
tree9f947bc89c7faa03d1f5455f52c9dee5a69e6580 /src/libsyntax/parse
parent01cd53baf0ea241b17132e857ba356b9b9a14908 (diff)
downloadrust-b8cfd5c4142c28dde844678f2d506ccaf058dc78.tar.gz
rust-b8cfd5c4142c28dde844678f2d506ccaf058dc78.zip
librustc: Long lines. rs=rustbot
Diffstat (limited to 'src/libsyntax/parse')
-rw-r--r--src/libsyntax/parse/parser.rs4
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));
+      }
       _ => ()
     })