Changeset 12717
- Timestamp:
- 05/22/10 20:51:09 (13 years ago)
- Location:
- trunk/abcl/src/org/armedbear/lisp
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/src/org/armedbear/lisp/Interpreter.java
r12675 r12717 178 178 catch (ClassNotFoundException e) { } // FIXME: what to do? 179 179 180 Load.loadSystemFile("j.lisp" );180 Load.loadSystemFile("j.lisp", false); // not being autoloaded 181 181 182 182 initialized = true; … … 218 218 private static synchronized void initializeSystem() 219 219 { 220 Load.loadSystemFile("system" );220 Load.loadSystemFile("system", false); // not being autoloaded 221 221 } 222 222 … … 309 309 310 310 else 311 Load.loadSystemFile(args[i + 1] );311 Load.loadSystemFile(args[i + 1], false); // not being autoloaded 312 312 ++i; 313 313 } else { -
trunk/abcl/src/org/armedbear/lisp/Load.java
r12716 r12717 217 217 } 218 218 219 public static final LispObject loadSystemFile(String filename)220 221 {222 final LispThread thread = LispThread.currentThread();223 return loadSystemFile(filename,224 Symbol.LOAD_VERBOSE.symbolValue(thread) != NIL,225 Symbol.LOAD_PRINT.symbolValue(thread) != NIL,226 false);227 }228 229 219 public static final LispObject loadSystemFile(String filename, boolean auto) 230 220
Note: See TracChangeset
for help on using the changeset viewer.