Custom Query (1030 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (667 - 669 of 1030)

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

#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. '

#252 fixed CLOSE with :ABORT T does not delete FILE Gary Byers Osei Poku
Description

When a file is created with OPEN, CLOSEing it with :ABORT T should delete it. Currently, the created file is not deleted.

The correct thing happens, though, when the file is CLOSEd after OPENing it with :IF-EXISTS :SUPERSEDE. ie The original contents are restored.

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