summary refs log tree commit diff
path: root/src/libsyntax/ext
diff options
context:
space:
mode:
authorFelix S. Klock II <pnkfelix@pnkfx.org>2013-06-12 19:16:30 +0200
committerFelix S. Klock II <pnkfelix@pnkfx.org>2013-06-12 19:16:30 +0200
commit91bced8ae850f18395ae33e3b982e1e6e97e2c78 (patch)
tree98e9928ab2925380e785aee27686ff31816d09ed /src/libsyntax/ext
parentecef9ad75adb929521e3e6a3cd2137964f7cd36c (diff)
downloadrust-91bced8ae850f18395ae33e3b982e1e6e97e2c78.tar.gz
rust-91bced8ae850f18395ae33e3b982e1e6e97e2c78.zip
Fix linebreak and whitespace issues to placate make tidy.
Diffstat (limited to 'src/libsyntax/ext')
-rw-r--r--src/libsyntax/ext/expand.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libsyntax/ext/expand.rs b/src/libsyntax/ext/expand.rs
index a23512116c1..5e72c46b765 100644
--- a/src/libsyntax/ext/expand.rs
+++ b/src/libsyntax/ext/expand.rs
@@ -372,7 +372,8 @@ pub fn expand_stmt(extsbox: @mut SyntaxEnv,
 pub fn new_name_finder() -> @Visitor<@mut ~[ast::ident]> {
     let default_visitor = visit::default_visitor();
     @Visitor{
-        visit_pat : |p:@ast::pat,(ident_accum, v): (@mut ~[ast::ident], visit::vt<@mut ~[ast::ident]>)| {
+        visit_pat : |p:@ast::pat,
+                     (ident_accum, v): (@mut ~[ast::ident], visit::vt<@mut ~[ast::ident]>)| {
             match *p {
                 // we found a pat_ident!
                 ast::pat{id:_, node: ast::pat_ident(_,path,ref inner), span:_} => {