Changeset 13016
- Timestamp:
- 11/10/10 21:13:42 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/src/org/armedbear/lisp/zip.java
r12947 r13016 45 45 import java.util.zip.ZipOutputStream; 46 46 47 // ### zip pathname pathnames 47 @DocString(name="zip", 48 args="pathname pathnames &optional topdir", 49 doc="Creates a zip archive at PATHNAME whose entries enumerated via the list of PATHNAMES.\n" 50 + "If the optional TOPDIR argument is specified, the archive will " 51 + "preserve the hierarchy of PATHNAMES relative to TOPDIR. Without " 52 + "TOPDIR, there will be no sub-directories in the archive, i.e. it will " 53 + "be flat.") 48 54 public final class zip extends Primitive 49 55 { 50 56 private zip() 51 57 { 52 super("zip", PACKAGE_SYS, true , "pathname pathnames &optional topdir");58 super("zip", PACKAGE_SYS, true); 53 59 } 54 60 55 61 @Override 56 62 public LispObject execute(LispObject first, LispObject second) 57 58 63 { 59 64 Pathname zipfilePathname = coerceToPathname(first);
Note: See TracChangeset
for help on using the changeset viewer.