Custom Query (1030 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (268 - 270 of 1030)

Ticket Resolution Summary Owner Reporter
#316 fixed document JOIN-PROCESS Gary Byers R. Matthew Emerson
Description

Add documentation for JOIN-PROCESS (see ccl:level-1;l1-processes.lisp)

#867 invalid do tries to iterate into print output? Marshall Abrams
Description

Hi,

Is this a known bug? I don't have the expertise to describe the problem in a sensible way--I'm not even sure whether it has to do with 'do' per se--but you'll see what I mean. This is on: 1.6-r14468M (DarwinX8664)!

Line breaks added for readability:

? (setf (get 'sym1 'prop) '(this that theother))
(THIS THAT THEOTHER)
? (setf sym2 'sym1)
SYM1
? (do ((lst (symbol-plist 'sym1) (cdr lst))) 
      ((null lst) t) 
   (princ (car lst)))
PROP(THIS THAT THEOTHER)
T
? (do ((lst (symbol-plist sym2) (cdr lst))) 
      ((null lst) t) 
    (princ (car lst)))
;Compiler warnings :
;   In an anonymous lambda form at position 24: Undeclared free variable SYM2PROP(THIS THAT THEOTHER)
T
? 

Thank you for ccl, btw. It seems incredibly fast, which matters for my application.

Marshall

#257 fixed division of bignum by zero not noticed Gary Byers Greg Pfeil
Description

(/ (1+ most-positive-fixnum) 0) => 1/0

This should signal a DIVISION-BY-ZERO condition.

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