Remove support for the '.' after a nullary tag in a pattern

(Commit also includes lots of changes to remove '.'s that a git
merge messed up, or else it was monkeys.)
This commit is contained in:
Tim Chevalier
2012-01-19 01:03:57 -08:00
parent 9df0306889
commit 5b028f527f
42 changed files with 125 additions and 130 deletions

View File

@@ -97,8 +97,8 @@ fn fclose(file: libc::FILE) {
fn fsync_fd(fd: fd_t, level: io::fsync::level) -> c_int {
alt level {
io::fsync::fsync. | io::fsync::fullfsync. { ret libc::fsync(fd); }
io::fsync::fdatasync. { ret libc::fdatasync(fd); }
io::fsync::fsync | io::fsync::fullfsync { ret libc::fsync(fd); }
io::fsync::fdatasync { ret libc::fdatasync(fd); }
}
}