Changeset 12653


Ignore:
Timestamp:
05/05/10 05:32:52 (13 years ago)
Author:
Mark Evenson
Message:

Fix MERGE-PATHNAMES for URL-PATHNAME under Windows.

If the Pathname is a URL-PATHNAME, do not include the defaulted
DEVICE.

File:
1 edited

Legend:

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

    r12652 r12653  
    17961796            result.device = p.device;
    17971797        } else {
    1798             result.device = d.device;
     1798            if (!p.isURL()) {
     1799                result.device = d.device;
     1800            }
    17991801        }
    18001802
Note: See TracChangeset for help on using the changeset viewer.