format: flonum-to-string: Minimal width for numbers is 1 not 0.

Signed-off-by: Daniel Kochmański <dkochmanski@turtle-solutions.eu>
This commit is contained in:
Daniel Kochmański 2015-05-11 11:05:41 +02:00
parent 8b0b31f34e
commit bfa1f614ed

View file

@ -117,7 +117,7 @@
(float-to-digits nil x nil nil))
(T (let ((w (multiple-value-list
(float-to-digits nil x
(max 0
(max 1
(+ (1- width)
(if (minusp scale)
scale 0)))