Custom Query (1030 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (217 - 219 of 1030)

Ticket Resolution Summary Owner Reporter
#267 fixed No runtime warnings on call to (eql) Gary Byers gz
Description
? (defun foo () (eql))
;Compiler warnings :
;   In FOO: In the call to EQL with arguments (),
;     0 arguments were provided, but at least 2 are required
;     by the current global definition of EQL
? (foo)
T
?

Minor, but it would be nice to get a runtime error, in case you miss the compile-time warnings for whatever reason.

#268 fixed encode/decode-universal-time with highly fractional time-zones Gary Byers gz
Description
? (decode-universal-time
    (encode-universal-time 10 10 10 1 1 2000 1787/360) 1787/360)
0
61/6
10
1
1
2000
5
NIL
1787/360

The first two values are wrong.

#270 duplicate (setf values) is not supposed to flatten out the values Gary Byers gz
Description
? (let (a b) (setf (values (values a b)) (values 1 2)) (list a b))
(1 2)
? 

Should return (1 nil), by my reading of http://www.lispworks.com/documentation/HyperSpec/Body/05_abc.htm.

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