Switch 'cont' to 'again' everywhere. Close #2229.

This commit is contained in:
Graydon Hoare 2012-07-09 14:37:48 -07:00
parent 9afc8be04b
commit c26d02557e
28 changed files with 47 additions and 47 deletions

View file

@ -207,7 +207,7 @@ fn main(args: ~[str]) {
while !rdr.eof() {
let line: str = rdr.read_line();
if str::len(line) == 0u { cont; }
if str::len(line) == 0u { again; }
alt (line[0], proc_mode) {

View file

@ -155,7 +155,7 @@ fn main(args: ~[str]) {
while !rdr.eof() {
let line: str = rdr.read_line();
if str::len(line) == 0u { cont; }
if str::len(line) == 0u { again; }
alt (line[0], proc_mode) {