Custom Query (1030 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (898 - 900 of 1030)

Ticket Resolution Summary Owner Reporter
#749 fixed Unicode encoding fails silently on illegal characters Ron Garret
Description

If an attempt is made to encode a string to octets using an encoding that does not support some of the characters in the string, the result should be an error, but is in fact a bogus byte vector, e.g.:

? (encode-string-to-octets "(λ (μ) μ)" :EXTERNAL-format :ascii)
#(40 26 32 40 26 41 32 26 41)
#753 fixed Race condition in gui:background-process-run-function Gary Byers Ron Garret
Description

This:

(gui:background-process-run-function "foo" (lambda () (print 123)))

consistently causes CCL to hang with a SBOD. This:

(gui:background-process-run-function "foo" (lambda () (sleep 1) (print 123)))

works reliably.

#853 wontfix DEFVAR after DEFCONSTANT does not signal an error when no initial value provided Ron Garret
Description

SLSIA.

Welcome to Clozure Common Lisp Version 1.7-dev-r14715M-trunk  (DarwinX8664)!
? (defconstant x 1)
X
? (defvar x)  ; Should signal an error but doesn't
X
? (defvar x 1)
> Error: Can't redefine constant X .
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.