Custom Query (1030 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (193 - 195 of 1030)

Ticket Resolution Summary Owner Reporter
#241 fixed Fixes for UFFI support Gary Byers Hans Hübner
Description

UFFI uses internal CCL functions, some of which do not work any more:

%set-cstring assumed byte-wide characters

%find-foreign-record first looked for a structure definition, then for a union definition. For unions, it appears that the struct definition that was created for unions was always returned. I reversed the order (first look for a union definition, then for a structure definition for a given name) which fixes the problem for the UFFI test suite. This needs review.

Patch attached.

#242 fixed %SET-CSTRING assumes 8-bit characters Gary Byers Gary Byers
Description

%SET-CSTRING (which is the SETF inverse of %GET-CSTRING) tries to use %COPY-IVECTOR-TO-PTR; that can't work (since strings are always UTF-32 internally).

(This was originally part of ticket:241)

#243 duplicate let bug Gary Byers Osei Poku
Description

{{{(let ((a 10))

(let ((b a)

(c (incf a)))

(format t "~A ~A ~A~%" a b c)))}}}

The following code should give 11 10 11, however openmcl produces 11 11 11.

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