Changeset 12549


Ignore:
Timestamp:
03/16/10 10:43:53 (13 years ago)
Author:
Mark Evenson
Message:

Allow TYPE to be :UNSPECIFIC.

Fixes bug where the following would fail:

(make-pathname :directory '(:relative) :name "file"

:type :unspecific :host nil :device nil)

File:
1 edited

Legend:

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

    r12544 r12549  
    553553            sb.append('*');
    554554        }
    555         if (type != NIL) {
     555        if (type != NIL && type != Keyword.UNSPECIFIC) {
    556556            sb.append('.');
    557557            if (type instanceof AbstractString) {
Note: See TracChangeset for help on using the changeset viewer.