Custom Query (1030 matches)
Results (358 - 360 of 1030)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #1036 | fixed | #'rename-file disregards filespec when supplying defaults | ||
| Description |
This is a fix: --- lib/pathnames.lisp.orig
+++ lib/pathnames.lisp.new
@@ -98,7 +98,7 @@
file, then the associated file is renamed."
(let* ((original (truename file))
(original-namestring (native-translated-namestring original))
- (new-name (merge-pathnames new-name original))
+ (new-name (merge-pathnames new-name (merge-pathnames file)))
(new-namestring (native-translated-namestring new-name)))
(unless new-namestring
(error "~S can't be created." new-name))
|
|||
| #243 | duplicate | let bug | ||
| Description |
{{{(let ((a 10))
The following code should give 11 10 11, however openmcl produces 11 11 11. |
|||
| #244 | fixed | let bug | ||
| Description |
(let ((a 10))
The following code should give 11 10 11, however openmcl produces 11 11 11. ' |
|||
