Custom Query (1030 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (250 - 252 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...

#1129 notabug Windows version CL 1.9 wx86cl.exe is virus infected Tony Phillips
Description

After downloading and extracting CL 1.9 for Windows "G-Data Anti-virus 2013" reports wx86cl.exe is infected with Gen:Trojan.Heur.GM.2008040880.

#1171 notabug streams in Listener when launched from slime Pascal Bourguignon
Description

When launching the Lisp IDE from slime (require :cocoa), the GUI listener uses swank output streams, instead of the Listener window. This is due to missing bindings in make-mcl-listener-process. Adding:

                          (let ((*standard-input*  input-stream)
                                (*standard-output* output-stream)
                                (*error-output*    output-stream)
                                (*trace-output*    output-stream)
                                (*terminal-io*
                                  (if echoing
                                      (make-echoing-two-way-stream
                                       input-stream output-stream)
                                      (make-two-way-stream
                                       input-stream output-stream)))
                                (*query-io* *terminal-io*)
                                (*debug-io* *terminal-io*))

makes it work as expected.

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