Custom Query (1030 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (892 - 894 of 1030)

Ticket Resolution Summary Owner Reporter
#1184 notabug (read-from-string "#-genera" nil nil) should return nil, gets exception instead Kalman Reti
Description

I can understand why this happens, but if I supply an eof-error-p argument of nil and an eof-value of nil, I should just get nil, no? (At least that's how I interpret the hyperspec entry for read-from-string.)

(I'm doing some processing of files line-by-line, and this line happened to come all by itself ahead of the definition of a function on the next few lines.)

I tried this both in a shipped 1.9 and in a second 1.9 which had been updated via svn update and fully rebuilt.

#1186 fixed FORMAT prints one digit too many after decimal point for ~e directive Robert Dodier
Description

FORMAT prints one digit too many after decimal point for ~e directive (CLHS 22.3.3.2). E.g.:

$ ./lx86cl 
Welcome to Clozure Common Lisp Version 1.9-r16078  (LinuxX8632)!
? (loop for d in '(1 2 3 4 5 6) do (format t "~,ve ~,ve~%" d 1.2345678e-10 d 1.2345678e+10))
1.23E-10 1.23E+10
1.235E-10 1.235E+10
1.2346E-10 1.2346E+10
1.23457E-10 1.23457E+10
1.234568E-10 1.234568E+10
1.2345679E-10 1.2345678E+10
NIL

On the other hand SBCL 1.0.55.0 is correct from what I can tell:

* (loop for d in '(1 2 3 4 5 6) do (format t "~,ve ~,ve~%" d 1.2345678e-10 d 1.2345678e+10))
1.2e-10 1.2e+10
1.23e-10 1.23e+10
1.235e-10 1.235e+10
1.2346e-10 1.2346e+10
1.23457e-10 1.23457e+10
1.234568e-10 1.234568e+10
NIL
#1188 fixed Search-files no longer works in 10.6 Zach Beane Shannon Spires
Description

Search-files uses ns:ns-table-cell-view (possibly among other constructs) which is 10.7 only. Revert code to 10.6 compatibility until a formal decision is made to no longer support 10.6.

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