Changeset 13944


Ignore:
Timestamp:
05/24/12 11:11:43 (12 years ago)
Author:
Mark Evenson
Message:

Add docstring for SYS:UNZIP.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abcl/src/org/armedbear/lisp/unzip.java

    r12429 r13944  
    4343import java.util.zip.ZipFile;
    4444
    45 // ### unzip pathname directory => unzipped_pathnames
     45@DocString(name="unzip",
     46           args="pathname &optional directory => unzipped_pathnames",
     47           doc="Unpack zip archive at PATHNAME returning a list of extracted pathnames.\nIf the optional DIRECTORY is specified, root the abstraction in that directory, otherwise use the current value of *DEFAULT-PATHNAME-DEFAULTS.")
    4648public final class unzip
    4749  extends Primitive
    4850{
    4951    public unzip() {
    50         super("unzip", PACKAGE_SYS, true, "pathname &optional directory => unzipped_pathnames");
     52        super("unzip", PACKAGE_SYS, true,
     53              "pathname &optional directory => unzipped_pathnames");
    5154    }
    5255 
Note: See TracChangeset for help on using the changeset viewer.