Changeset 3541


Ignore:
Timestamp:
08/29/03 15:49:25 (20 years ago)
Author:
piso
Message:

atom()

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

Legend:

Unmodified
Added
Removed
  • trunk/j/src/org/armedbear/lisp/Cons.java

    r3531 r3541  
    33 *
    44 * Copyright (C) 2002-2003 Peter Graves
    5  * $Id: Cons.java,v 1.20 2003-08-26 16:49:57 piso Exp $
     5 * $Id: Cons.java,v 1.21 2003-08-29 15:49:25 piso Exp $
    66 *
    77 * This program is free software; you can redistribute it and/or
     
    7373    {
    7474        return NIL;
     75    }
     76
     77    public boolean atom()
     78    {
     79        return false;
    7580    }
    7681
  • trunk/j/src/org/armedbear/lisp/LispObject.java

    r3533 r3541  
    33 *
    44 * Copyright (C) 2002-2003 Peter Graves
    5  * $Id: LispObject.java,v 1.38 2003-08-26 17:17:21 piso Exp $
     5 * $Id: LispObject.java,v 1.39 2003-08-29 15:48:30 piso Exp $
    66 *
    77 * This program is free software; you can redistribute it and/or
     
    5959    }
    6060
     61    public boolean atom()
     62    {
     63        return true;
     64    }
     65
    6166    public String getName()
    6267    {
Note: See TracChangeset for help on using the changeset viewer.