Custom Query (1030 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (757 - 759 of 1030)

Ticket Resolution Summary Owner Reporter
#205 fixed Cascade-like slow refresh when inserting lines in long files Gary Byers ds
Description

(This is using ClozureCL2007-12-03.dmg) Take a large file, such as lispmode.lisp, scroll somewhere near the end, then add some newlines between two definitions by hitting return a few times rapidly. As the blank lines appear, they wipe out the lines below them, which then take several seconds to re-appear in the expected position, in a cascade-like effect.

#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.

#208 fixed Clozure CL.app doesn't load ~/ccl-init.lisp Gary Byers Gary Byers
Description

It should.

(See also ticket:87)

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