Custom Query (1030 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (193 - 195 of 1030)

Ticket Resolution Summary Owner Reporter
#1126 notabug just require-ing package compiled with debug affects other packages Ilya Vazhev
Description

$ ccl -n -l q.lisp

Error: Stack overflow on value stack.

Tail call optimization did not happen.

May be I miss something...

#863 fixed jump tables for CASE Gary Byers R. Matthew Emerson
Description

For CASE forms with suitably small ranges of integer keys, the compiler could generate a jump table (or binary search, or a combination of the two) rather than the obvious linear search.

#599 fixed io encoding in RUN-PROGRAM Gary Byers hrapof
Description

With "Version 1.3-r12839M (LinuxPPC32)" and Ubuntu 7.10, the following

(with-output-to-string

(stream) (ccl:run-program

"sh" `("-c"

,(format

nil "echo ~a | aspell -a --encoding=utf-8 --lang=~a" "dpg" "en"))

:output stream))

works as expected, while

(with-output-to-string

(stream) (ccl:run-program

"sh" `("-c"

,(format

nil "echo ~a | aspell -a --encoding=utf-8 --lang=~a" "сабака" "ru"))

:output stream))

does not (no suggestions are showed). Both worked five years ago on MacOS X, and in shell aspell works correctly. Some investigation showed that the problem is in the encoding RUN-PROGRAM uses for io. CCL is started with

-K utf-8 --eval '(setf *default-file-character-encoding* :utf-8)'

but it seems it's not enough...

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