Changeset 12652


Ignore:
Timestamp:
05/03/10 13:43:00 (14 years ago)
Author:
Mark Evenson
Message:

Use '/' as directory path separator for URL-PATHNAME and JAR-PATHNAME.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abcl/src/org/armedbear/lisp/Pathname.java

    r12642 r12652  
    741741        if (directory != NIL) {
    742742            final char separatorChar;
    743             if (device instanceof Cons) {
    744                 separatorChar = '/'; // Jar file.
     743            if (isJar() || isURL()) {
     744                separatorChar = '/';
    745745            } else {
    746746                separatorChar = File.separatorChar;
Note: See TracChangeset for help on using the changeset viewer.