Changeset 11240
- Timestamp:
- 09/17/07 16:57:19 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/j/src/org/armedbear/lisp/Primitives.java
r11158 r11240 3 3 * 4 4 * Copyright (C) 2002-2007 Peter Graves 5 * $Id: Primitives.java,v 1.8 79 2007-02-23 21:17:34piso Exp $5 * $Id: Primitives.java,v 1.880 2007-09-17 16:57:19 piso Exp $ 6 6 * 7 7 * This program is free software; you can redistribute it and/or … … 17 17 * You should have received a copy of the GNU General Public License 18 18 * along with this program; if not, write to the Free Software 19 * Foundation, Inc., 5 9 Temple Place - Suite 330, Boston, MA 02111-1307, USA.19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 20 20 */ 21 21 … … 641 641 public LispObject execute(LispObject arg) throws ConditionThrowable 642 642 { 643 return Fixnum.ZERO.subtract(arg);643 return arg.negate(); 644 644 } 645 645 public LispObject execute(LispObject first, LispObject second)
Note: See TracChangeset
for help on using the changeset viewer.