diff options
| author | Brian Anderson <banderson@mozilla.com> | 2012-09-07 15:32:04 -0700 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2012-09-07 17:39:03 -0700 |
| commit | 2810ea9a687df32064dc3fa7db48f52e27d39ed5 (patch) | |
| tree | 4fb386e360cc050a7a05afe564cec58fe65a245a /src/libsyntax/parse/token.rs | |
| parent | 073df63c72faed7a773cb9ad0ad5e27edcb4f9f1 (diff) | |
| download | rust-2810ea9a687df32064dc3fa7db48f52e27d39ed5.tar.gz rust-2810ea9a687df32064dc3fa7db48f52e27d39ed5.zip | |
Convert 'again' to 'loop'. Remove 'again' keyword
Diffstat (limited to 'src/libsyntax/parse/token.rs')
| -rw-r--r-- | src/libsyntax/parse/token.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/parse/token.rs b/src/libsyntax/parse/token.rs index cc1b049ab93..c2099fa447f 100644 --- a/src/libsyntax/parse/token.rs +++ b/src/libsyntax/parse/token.rs @@ -412,7 +412,7 @@ fn contextual_keyword_table() -> hashmap<~str, ()> { fn restricted_keyword_table() -> hashmap<~str, ()> { let words = str_hash(); let keys = ~[ - ~"again", ~"assert", + ~"assert", ~"break", ~"const", ~"copy", ~"do", ~"drop", |
