Custom Query (1030 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (844 - 846 of 1030)

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

#1304 notabug let-binding / closure problem with trees Matt Piroglu
Description

Clozure Common Lisp Version 1.10-r16196 (DarwinX8664)

I just tried this example and it seems sub lists remain in new created closure, whereas they should be new values:

(defun closure-eg ()
  (let ((l1 '((a 0) (b 0))))
    (incf (second (assoc 'a l1)))
    l1))

run this function more than once, and the l1 binding is only shallow-recreated??

MY-PACKAGE> (closure-eg)
((A 1) (B 0))
MY-PACKAGE> (closure-eg)
((A 2) (B 0))
MY-PACKAGE> (closure-eg)
((A 3) (B 0))

the numbers in first list (A n) should always be 1, shouldn't they?

#761 notabug libc not found Lou Vanek
Description

After installing Debian Lenny (stable) and the latest version of CCL-trunk and usocket, I get an error if I run (usocket:get-host-name) because #_gethostname is not found.

This is because libc.so is not found in directory /lib. When I add a link to libc.so in /lib then all is well and it works. There /is/ a link to libc.so in the /usr/lib directory but ccl ignores it.

I'm not sure whether ccl's goal is to be newbie-friendly, but if it is I think it would be wise to look for libc in all the usual places (/lib /usr/lib) on linux.

Thanks

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