Custom Query (1030 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (931 - 933 of 1030)

Ticket Resolution Summary Owner Reporter
#144 invalid Hemlock windows initially show wrong package Gary Byers Andrew Shalit
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 R. Matthew Emerson R. Matthew Emerson
Description

It might be worthwhile to investigate adding a DTrace provider to OpenMCL.

#207 invalid 'sort' function truncates lists Gary Byers Brian Hayes
Description

Welcome to Clozure Common Lisp Version 1.1-r7809 (DarwinPPC32)!

? (let ((x '(1 2 3)))

(sort x #'<) x)

(1 2 3) ? (let ((x '(1 3 2)))

(sort x #'<) x)

(1 2 3) ? (let ((x '(2 1 3)))

(sort x #'<) x)

(2 3) ? (let ((x '(2 3 1)))

(sort x #'<) x)

(2 3) ? (let ((x '(3 1 2)))

(sort x #'<) x)

(3) ? (let ((x '(3 2 1)))

(sort x #'<) x)

(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)))

(sort x #'<) x)

#(1 2 3)

Also, 'stable-sort' exhibits the same behavior.

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.