Skip to content
  1. Nov 11, 2011
    • D Herring's avatar
      user-stream bugfix · c4727b06
      D Herring authored
      Under SBCL, floating-point numbers were printing incorrectly.
      e.g. (format t "~A" 12.34) was printing 12.1234!
      The equivalent string literals were ok.
      
      Investigation found that SBCL prints floats as
        (write-string "1234" 0 3)
        (write-char #\.)
        (write-string "1234" 3 nil)
      This last call was incorrectly handled by the IF.
      I assume it was meant as an optimization...
      c4727b06
  2. Nov 09, 2011
  3. Nov 08, 2011
  4. Nov 07, 2011
  5. Dec 28, 2009
  6. Dec 27, 2009
  7. Dec 26, 2009