Changeset 4074


Ignore:
Timestamp:
09/26/03 18:26:27 (20 years ago)
Author:
piso
Message:

Made the NREVERSE primitive public for LispThread?.backtraceAsList().

File:
1 edited

Legend:

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

    r4072 r4074  
    33 *
    44 * Copyright (C) 2002-2003 Peter Graves
    5  * $Id: Primitives.java,v 1.442 2003-09-26 16:52:56 piso Exp $
     5 * $Id: Primitives.java,v 1.443 2003-09-26 18:26:27 piso Exp $
    66 *
    77 * This program is free software; you can redistribute it and/or
     
    41774177
    41784178    // ### nreverse
    4179     private static final Primitive1 NREVERSE = new Primitive1("nreverse") {
     4179    public static final Primitive1 NREVERSE = new Primitive1("nreverse") {
    41804180        public LispObject execute (LispObject arg) throws ConditionThrowable {
    41814181            if (arg instanceof AbstractVector) {
Note: See TracChangeset for help on using the changeset viewer.