Custom Query (1030 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (814 - 816 of 1030)

Ticket Resolution Summary Owner Reporter
#929 fixed Compiler should warn on #' (sharpsign single-quote) with undefined function R. Matthew Emerson Francois-Rene Rideau
Description

Ethan H. Schwartz 2009-05-03 16:41:00 EDT

Observe:

Welcome to Clozure Common Lisp Version 1.3-dev-r11962-working-0711 
(LinuxX8664)!
? (defun foo1 () #'bar1)
FOO1
? (defun foo2 () #'common-lisp::bar2)
FOO2
? (defun foo3 () #'common-lisp:bar3)

> Error: Reader error: No external symbol named "BAR3" in package #<Package "COMMON-LISP"> .

Note that FOO1 and FOO2 will both error at runtime.  CCL should have warned
when defining those functions as well.
#934 fixed ENCODE-UNIVERSAL-TIME returns negative values for times before 1900 Francois-Rene Rideau
Description

Ethan H. Schwartz 2009-08-03 11:09:54 EDT

The CLHS says: Universal time is an absolute time represented as a single non-negative integer---the number of seconds since midnight, January 1, 1900 GMT [...] Because universal time must be a non-negative integer, times before the base time of midnight, January 1, 1900 GMT cannot be processed by Common Lisp.

http://www.lispworks.com/documentation/HyperSpec/Body/25_adb.htm

? (ENCODE-UNIVERSAL-TIME 0 0 19 31 12 1899) 0 ? (ENCODE-UNIVERSAL-TIME 59 59 18 31 12 1899) -1

The right thing to do would probably be to signal a type error.

#935 wontfix INTERSECTION should signal TYPE-ERROR when LIST2 is not a list Francois-Rene Rideau
Description

Ethan H. Schwartz 2009-07-23 10:53:02 EDT

Welcome to Clozure Common Lisp Version 1.4-dev-r12415-working-0711 
(LinuxX8664)!
? (intersection nil :a)
NIL
?
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.