Changeset 12673
- Timestamp:
- 05/13/10 12:47:51 (15 years ago)
- Location:
- trunk/abcl/src/org/armedbear/lisp
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/abcl/src/org/armedbear/lisp/Interpreter.java ¶
r12629 r12673 93 93 initializeLisp(); 94 94 initializeTopLevel(); 95 initializeSystem(); 95 96 if (!noinit) 96 97 processInitializationFile(); … … 118 119 initializeJLisp(); 119 120 initializeTopLevel(); 121 initializeSystem(); 120 122 processInitializationFile(); 121 123 return interpreter; … … 210 212 e.printStackTrace(); 211 213 } 214 } 215 216 private static synchronized void initializeSystem() 217 { 218 Load.loadSystemFile("system"); 212 219 } 213 220 -
TabularUnified trunk/abcl/src/org/armedbear/lisp/boot.lisp ¶
r12516 r12673 210 210 (float (/ (ext:uptime) 1000))))) 211 211 212 ;;; "system.lisp" contains system installation specific information 213 ;;; (currently only the logical pathname definition for "SYS;SRC") 214 ;;; that is not currently required for ABCL to run. Since 215 ;;; LOAD-SYSTEM-FILE exits the JVM if its argument cannot be found, we 216 ;;; use REQUIRE trapping any error. 217 (handler-case 218 (require 'system) 219 (t ())) 220 212
Note: See TracChangeset
for help on using the changeset viewer.