Custom Query (1030 matches)
Results (628 - 630 of 1030)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #1071 | fixed | #'Directory with no type returns results different from wild type | ||
| Description |
(directory #P"foo/*" :directories nil) [(directory #P"foo:*" :directories nil) in MCL] MCL: Returns all files under the foo directory, regardless of whether they have a type or not. CCL: Returns only files that have no type under foo directory. Test: (= (length (directory #P"ccl:*.*")) (length (directory #P"ccl:*"))) Should return T if this bug is fixed. Technically, this is probably not an ANSI compliance issue since ANSI is vague on what #'directory is supposed to do. But current behavior is different from MCL, which is presumably where many CCL users come from. It would be interesting to see what ACL does here. Fix is simple: --- pathnames.lisp (revision 15751) +++ pathnames.lisp (working copy) @@ -582,6 +582,10 @@
+ (when (and (eq name-pat :wild) + (or (null type-pat) + (eq type-pat :unspecific))) + (setq type-pat :wild))
|
|||
| #1076 | fixed | mailman archive line wrapping | ||
| Description |
Many/most/all archived mailing list messages have long lines. One example is http://clozure.com/pipermail/openmcl-devel/2009-December/010792.html The following two links suggest how this can be corrected. http://wiki.list.org/pages/viewpage.action?pageId=4030605 https://bugs.launchpad.net/mailman/+bug/266467 |
|||
| #1077 | fixed | *command-line-argument-list* is undocumented | ||
| Description |
The ccl-documentation.html does not mention *command-line-argument-list*. I believe it should. :) If you supply me with a specification of CCL command line argument handling, I offer writing the missing documentation myself. Cheers, max PS: Thanks for the great work on ccl! |
|||
