Custom Query (1030 matches)
Results (931 - 933 of 1030)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #144 | invalid | Hemlock windows initially show wrong package | ||
| Description |
Hemlock initially shows the wrong package when it opens files that begin with an IN-PACKAGE form rather than a modeline. If you click in the text area of the file, it updates the package display to show the correct package. For example: if you open "ccl:examples;cocoa;easygui;currency-converter.lisp" the window's modeline will initially show CL-USER as the package, even though the file begins with (IN-PACKAGE :EASYGUI-DEMO). |
|||
| #202 | invalid | add DTrace provider | ||
| Description |
It might be worthwhile to investigate adding a DTrace provider to OpenMCL. |
|||
| #207 | invalid | 'sort' function truncates lists | ||
| Description |
Welcome to Clozure Common Lisp Version 1.1-r7809 (DarwinPPC32)! ? (let ((x '(1 2 3)))
(1 2 3) ? (let ((x '(1 3 2)))
(1 2 3) ? (let ((x '(2 1 3)))
(2 3) ? (let ((x '(2 3 1)))
(2 3) ? (let ((x '(3 1 2)))
(3) ? (let ((x '(3 2 1)))
(3) I know that 'sort' is a "destructive" operation, but I think this goes too far. Note that the problem does not arise when the argument is a vector rather than a list: ? (let ((x '#(3 2 1)))
#(1 2 3) Also, 'stable-sort' exhibits the same behavior. |
|||
