summary refs log tree commit diff
path: root/src/libsyntax/ext/simplext.rs
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/ext/simplext.rs
parent01cd53baf0ea241b17132e857ba356b9b9a14908 (diff)
downloadrust-b8cfd5c4142c28dde844678f2d506ccaf058dc78.tar.gz
rust-b8cfd5c4142c28dde844678f2d506ccaf058dc78.zip
librustc: Long lines. rs=rustbot
Diffstat (limited to 'src/libsyntax/ext/simplext.rs')
-rw-r--r--src/libsyntax/ext/simplext.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/libsyntax/ext/simplext.rs b/src/libsyntax/ext/simplext.rs
index 1bf24670aab..f13c5c9aff9 100644
--- a/src/libsyntax/ext/simplext.rs
+++ b/src/libsyntax/ext/simplext.rs
@@ -422,7 +422,9 @@ fn transcribe_block(cx: ext_ctxt, b: bindings, idx_path: @mut ~[uint],
     return match block_to_ident(blk) {
           Some(id) => {
             match follow_for_trans(cx, b.find(id), idx_path) {
-              Some(match_block(ref new_blk)) => ((*new_blk).node, (*new_blk).span),
+              Some(match_block(ref new_blk)) => {
+                ((*new_blk).node, (*new_blk).span)
+              }
 
               // possibly allow promotion of ident/path/expr to blocks?
               Some(ref m) => match_error(cx, (*m), ~"a block"),