Custom Query (1030 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (949 - 951 of 1030)

Ticket Resolution Summary Owner Reporter
#465 fixed Shorthand type declarations. Gary Byers Stas Boukarev
Description

According to the <a href=""http://www.lispworks.com/reference/HyperSpec/Body/03_cca.htm">CLHS 3.3.3.1</a> type declarations can be shortened, but CCL gives a warning:

(proclaim '((array character) *foo*)) ; Warning: Unknown declaration specifier(s) in ((ARRAY CHARACTER) *FOO*)

#607 fixed nested values places in setf Gary Byers Stas Boukarev
Description

(let ((a t) (b t))

(setf (values (values a b)) (values 1 2)) (list a b))

should return (1 NIL), but returns (1 2).

Looks like this was introduced by modifying original cmucl sources, putting removed parts back does fix it. Attached patch does this.

#613 fixed (defun nil ()) crashes CCL Gary Byers Stas Boukarev
Description

(defun nil ()) expands to

(ccl::%defun (ccl::nfunction nil (lambda nil (block nil))) 'nil)

And call to

(ccl::dbg (ccl::nfunction nil (lambda ())))

from %defun brings CCL to the kernel debugger.

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