# HG changeset patch # User jwe # Date 1033789660 0 # Node ID f70ce9baacd3b2fab6c8f7c93cbe928c7d0b7c20 # Parent 933ac11136251e96db035756abb29d364412d1ed [project @ 2002-10-05 03:47:40 by jwe] diff --git a/liboctave/oct-env.cc b/liboctave/oct-env.cc --- a/liboctave/oct-env.cc +++ b/liboctave/oct-env.cc @@ -255,15 +255,6 @@ return true; #endif - if (s[0] == '.') - { - if (len == 1 || is_dir_sep (s[1])) - return true; - - if (s[1] == '.' && (len == 2 || is_dir_sep (s[2]))) - return true; - } - return false; }