Changeset 13107


Ignore:
Timestamp:
12/28/10 20:51:37 (13 years ago)
Author:
ehuelsmann
Message:

Rename JNULL_REF to JNULL_REF_P.

File:
1 edited

Legend:

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

    r13103 r13107  
    10561056    };
    10571057
    1058     private static final Primitive JNULL_REF = new pf_jnull_ref();
     1058    private static final Primitive JNULL_REF_P = new pf_jnull_ref_p();
    10591059    @DocString(name="jnull-ref", args="object",
    10601060    doc="Returns a non-NIL value when the JAVA-OBJECT `object` is `null`,\n"
    10611061            + "or signals a TYPE-ERROR condition if the object isn't of\n"
    10621062            + "the right type.")
    1063     private static final class pf_jnull_ref extends Primitive
    1064     {
    1065         pf_jnull_ref()
     1063    private static final class pf_jnull_ref_p extends Primitive
     1064    {
     1065        pf_jnull_ref_p()
    10661066        {
    10671067            super("jnull-ref", PACKAGE_JAVA, true);
Note: See TracChangeset for help on using the changeset viewer.