Changeset 12717


Ignore:
Timestamp:
05/22/10 20:51:09 (13 years ago)
Author:
ehuelsmann
Message:

Remove convenience method which "prevents" typing of 1 boolean value.

Location:
trunk/abcl/src/org/armedbear/lisp
Files:
2 edited

Legend:

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

    r12675 r12717  
    178178            catch (ClassNotFoundException e) { } // FIXME: what to do?
    179179
    180             Load.loadSystemFile("j.lisp");
     180            Load.loadSystemFile("j.lisp", false); // not being autoloaded
    181181
    182182            initialized = true;
     
    218218    private static synchronized void initializeSystem()
    219219    {
    220         Load.loadSystemFile("system");
     220        Load.loadSystemFile("system", false); // not being autoloaded
    221221    }
    222222
     
    309309
    310310                        else
    311                             Load.loadSystemFile(args[i + 1]);
     311                            Load.loadSystemFile(args[i + 1], false); // not being autoloaded
    312312                        ++i;
    313313                    } else {
  • trunk/abcl/src/org/armedbear/lisp/Load.java

    r12716 r12717  
    217217    }
    218218
    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 
    229219    public static final LispObject loadSystemFile(String filename, boolean auto)
    230220
Note: See TracChangeset for help on using the changeset viewer.