Changeset 15454


Ignore:
Timestamp:
10/29/20 16:54:52 (2 years ago)
Author:
Mark Evenson
Message:

Call by reference review and cleanup

File:
1 edited

Legend:

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

    r15452 r15454  
    9494      .setType(NIL);
    9595    Pathname entryPath = p.getEntryPath();
    96     LispObject device = p.getDevice();
    97     device = device.nreverse().push(entryPath).nreverse();
     96    LispObject device = result.getDevice();
     97    device = device.reverse().push(entryPath).reverse();
    9898    result.setDevice(device);
    9999    return result;
Note: See TracChangeset for help on using the changeset viewer.