Changeset 3482


Ignore:
Timestamp:
08/24/03 16:41:22 (20 years ago)
Author:
piso
Message:

PUTHASH => PACKAGE_SYS

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

Legend:

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

    r3333 r3482  
    33 *
    44 * Copyright (C) 2003 Peter Graves
    5  * $Id: Autoload.java,v 1.47 2003-08-11 18:02:19 piso Exp $
     5 * $Id: Autoload.java,v 1.48 2003-08-24 16:41:22 piso Exp $
    66 *
    77 * This program is free software; you can redistribute it and/or
     
    186186        autoload("pathnamep", "Pathname");
    187187        autoload("probe-file", "probe_file");
    188         autoload("puthash", "HashTable");
    189188        autoload("remhash", "HashTable");
    190189        autoload("rename-package", "PackageFunctions");
     
    223222        autoload(PACKAGE_SYS, "%time", "Time");
    224223        autoload(PACKAGE_SYS, "make-fill-pointer-output-stream", "FillPointerOutputStream");
     224        autoload(PACKAGE_SYS, "puthash", "HashTable");
    225225    }
    226226}
  • trunk/j/src/org/armedbear/lisp/HashTable.java

    r3414 r3482  
    33 *
    44 * Copyright (C) 2002-2003 Peter Graves
    5  * $Id: HashTable.java,v 1.13 2003-08-15 17:18:02 piso Exp $
     5 * $Id: HashTable.java,v 1.14 2003-08-24 16:40:58 piso Exp $
    66 *
    77 * This program is free software; you can redistribute it and/or
     
    273273    };
    274274
     275    // ### puthash
    275276    // puthash key hash-table default &optional (value default) => value
    276     private static final Primitive PUTHASH = new Primitive("puthash") {
     277    private static final Primitive PUTHASH =
     278        new Primitive("puthash", PACKAGE_SYS, false) {
    277279        public LispObject execute(LispObject[] args) throws LispError
    278280        {
Note: See TracChangeset for help on using the changeset viewer.