Remove one last default argument mode from core::os

This commit is contained in:
Ben Blum
2012-08-22 14:10:56 -04:00
parent d2e2d97602
commit 0e620ac030

View File

@@ -484,7 +484,7 @@ fn homedir() -> option<Path> {
fn tmpdir() -> Path { fn tmpdir() -> Path {
return lookup(); return lookup();
fn getenv_nonempty(v: Path) -> option<Path> { fn getenv_nonempty(+v: Path) -> option<Path> {
match getenv(v) { match getenv(v) {
some(x) => some(x) =>
if str::is_empty(x) { if str::is_empty(x) {