Changeset 12635
- Timestamp:
- 04/25/10 07:06:04 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/src/org/armedbear/lisp/Load.java
r12607 r12635 85 85 LispObject abcl = Pathname.truename(abclPathname, false); 86 86 if (lisp instanceof Pathname && abcl instanceof Pathname) { 87 88 89 90 87 lispPathname = (Pathname)lisp; 88 abclPathname = (Pathname)abcl; 89 long lispLastModified = lispPathname.getLastModified(); 90 long abclLastModified = abclPathname.getLastModified(); 91 91 if (abclLastModified > lispLastModified) { 92 return abclPathname; // fasl file is newer 93 } else { 92 94 return lispPathname; 93 } else {94 return abclPathname;95 95 } 96 96 } else if (abcl instanceof Pathname) {
Note: See TracChangeset
for help on using the changeset viewer.