Changeset 12545


Ignore:
Timestamp:
03/15/10 13:57:06 (14 years ago)
Author:
Mark Evenson
Message:

Backport r12544: Fix win32 bugs with :ABSOLUTE directory entries for jar pathnames.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/0.19.x/abcl/src/org/armedbear/lisp/Pathname.java

    r12533 r12545  
    526526        String directoryNamestring = getDirectoryNamestring();
    527527        if (isJar()) {
    528             if (directoryNamestring.startsWith(File.separator)) {
     528            if (directoryNamestring.startsWith("/")) {
    529529                sb.append(directoryNamestring.substring(1));
     530            } else {
     531                sb.append(directoryNamestring);
    530532            }
    531533        } else {
     
    644646    }
    645647      }
    646       return result.toString();
    647648        } else  {
    648649            result.append(path);
Note: See TracChangeset for help on using the changeset viewer.