Changeset 13944
- Timestamp:
- 05/24/12 11:11:43 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/src/org/armedbear/lisp/unzip.java
r12429 r13944 43 43 import java.util.zip.ZipFile; 44 44 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.") 46 48 public final class unzip 47 49 extends Primitive 48 50 { 49 51 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"); 51 54 } 52 55
Note: See TracChangeset
for help on using the changeset viewer.