Changeset 11726


Ignore:
Timestamp:
04/03/09 21:52:58 (15 years ago)
Author:
ehuelsmann
Message:

Fix class dependency issue. The current code
works on Sun, however with this change we should
work on GCJ and other JVMs too.

Patch by: Douglas Miles (logicmoo at gmail dot com)

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

Legend:

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

    r11722 r11726  
    7979
    8080  // ### nil
    81   // Constructing NIL forces the Symbol class to be loaded (since Nil extends
    82   // Symbol).
    83   public static final LispObject NIL = new Nil(PACKAGE_CL);
     81  public static final LispObject NIL = Nil.NIL;
    8482
    8583  // We need NIL before we can call usePackage().
  • trunk/abcl/src/org/armedbear/lisp/Nil.java

    r11714 r11726  
    3636public final class Nil extends Symbol
    3737{
     38    final static Nil NIL = new Nil(PACKAGE_CL);
     39
    3840    public Nil(Package pkg)
    3941    {
Note: See TracChangeset for help on using the changeset viewer.