Custom Query (1030 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (724 - 726 of 1030)

Ticket Resolution Summary Owner Reporter
#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.

#755 fixed (user-homedir-pathname) not a constant? andrew
Description
dixiechicks.isi.edu 50%  ccl -n
Welcome to Clozure Common Lisp Version 1.4-r14334M  (LinuxX8632)!
? (user-homedir-pathname)
#P"/nfs/isd3/philpot/"

so far so good, but...

? (let ((*default-pathname-defaults*
          (make-pathname :directory '(:absolute "tmp")
             :name "dummy"
             :type "txt"
             :version :newest)))
   (user-homedir-pathname))
#P"/"
? (let ((*default-pathname-defaults* #p"/tmp/a.b"))
    (user-homedir-pathname))
#P"/nfs/isd3/philpot/a.b"

Looks like some merging is going on, but why?

As I read the CLHS, user-homedir-pathname is supposed to return either a (presumably constant) pathname sans name, type, and version components -- or NIL.

Is this behavior conformant?

Andrew 

#757 fixed char names for ascii control chars Ben Hyde
Description

Porting some code from lispworks/sbcl I note that the char names for things like #\SOH et. al. are not defined.

http://www.december.com/html/spec/ascii.html

(loop for x in '("#\NUL" "#\SOH" "#\STX" "#\ETX" "#\EOT" "#\ENQ" "#\ACK" "#\BEL" "#\BS" "#\HT" "#\NL" "#\VT" "#\NP" "#\CR" "#\SO" "#\SI") collect (ignore-errors (read-from-string x)))

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