From be3b733c49a1aeb5b99eb55a943f563531e1fc45 Mon Sep 17 00:00:00 2001 From: Paul Stansifer Date: Wed, 18 Jul 2012 17:49:16 -0700 Subject: [PATCH] Let's give that binder a name that's not incredibly confusing. --- src/libsyntax/ext/tt/transcribe.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libsyntax/ext/tt/transcribe.rs b/src/libsyntax/ext/tt/transcribe.rs index b9d490e9e28..e400a2b8eca 100644 --- a/src/libsyntax/ext/tt/transcribe.rs +++ b/src/libsyntax/ext/tt/transcribe.rs @@ -225,8 +225,8 @@ fn tt_next_token(&&r: tt_reader) -> {tok: token, sp: span} { r.cur.idx += 1u; ret ret_val; } - matched_nonterminal(nt) { - r.cur_span = sp; r.cur_tok = INTERPOLATED(nt); + matched_nonterminal(other_whole_nt) { + r.cur_span = sp; r.cur_tok = INTERPOLATED(other_whole_nt); r.cur.idx += 1u; ret ret_val; }