Changeset 3482
- Timestamp:
- 08/24/03 16:41:22 (20 years ago)
- Location:
- trunk/j/src/org/armedbear/lisp
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/j/src/org/armedbear/lisp/Autoload.java
r3333 r3482 3 3 * 4 4 * Copyright (C) 2003 Peter Graves 5 * $Id: Autoload.java,v 1.4 7 2003-08-11 18:02:19piso Exp $5 * $Id: Autoload.java,v 1.48 2003-08-24 16:41:22 piso Exp $ 6 6 * 7 7 * This program is free software; you can redistribute it and/or … … 186 186 autoload("pathnamep", "Pathname"); 187 187 autoload("probe-file", "probe_file"); 188 autoload("puthash", "HashTable");189 188 autoload("remhash", "HashTable"); 190 189 autoload("rename-package", "PackageFunctions"); … … 223 222 autoload(PACKAGE_SYS, "%time", "Time"); 224 223 autoload(PACKAGE_SYS, "make-fill-pointer-output-stream", "FillPointerOutputStream"); 224 autoload(PACKAGE_SYS, "puthash", "HashTable"); 225 225 } 226 226 } -
trunk/j/src/org/armedbear/lisp/HashTable.java
r3414 r3482 3 3 * 4 4 * Copyright (C) 2002-2003 Peter Graves 5 * $Id: HashTable.java,v 1.1 3 2003-08-15 17:18:02piso Exp $5 * $Id: HashTable.java,v 1.14 2003-08-24 16:40:58 piso Exp $ 6 6 * 7 7 * This program is free software; you can redistribute it and/or … … 273 273 }; 274 274 275 // ### puthash 275 276 // 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) { 277 279 public LispObject execute(LispObject[] args) throws LispError 278 280 {
Note: See TracChangeset
for help on using the changeset viewer.