diff options
| author | Graydon Hoare <graydon@mozilla.com> | 2012-07-09 14:37:48 -0700 |
|---|---|---|
| committer | Graydon Hoare <graydon@mozilla.com> | 2012-07-09 14:37:48 -0700 |
| commit | c26d02557e77ef02bf897563a38867ff0da3fc2a (patch) | |
| tree | 4f37e678d3b138386b7b9549081f266a12259d42 /src/libsyntax/ext | |
| parent | 9afc8be04b7fb2927fa33d41f8618ca7fb9285bb (diff) | |
| download | rust-c26d02557e77ef02bf897563a38867ff0da3fc2a.tar.gz rust-c26d02557e77ef02bf897563a38867ff0da3fc2a.zip | |
Switch 'cont' to 'again' everywhere. Close #2229.
Diffstat (limited to 'src/libsyntax/ext')
| -rw-r--r-- | src/libsyntax/ext/simplext.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/ext/simplext.rs b/src/libsyntax/ext/simplext.rs index 2f811891711..c9355f05e38 100644 --- a/src/libsyntax/ext/simplext.rs +++ b/src/libsyntax/ext/simplext.rs @@ -767,7 +767,7 @@ fn add_new_extension(cx: ext_ctxt, sp: span, arg: ast::mac_arg, for clauses.each |c| { alt use_selectors_to_bind(c.params, arg) { some(bindings) { ret transcribe(cx, bindings, c.body); } - none { cont; } + none { again; } } } cx.span_fatal(sp, "no clauses match macro invocation"); |
