From 558925d4f2daefafb4e8226195cbe60dad0bb3ad Mon Sep 17 00:00:00 2001 From: rtoy <rtoy> Date: Wed, 26 Mar 2008 16:43:48 +0000 Subject: [PATCH] Missed a place where flonum-to-string wasn't converted to use keyword args. --- code/format.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/format.lisp b/code/format.lisp index 55062ef9f..00e9dc2e5 100644 --- a/code/format.lisp +++ b/code/format.lisp @@ -5,7 +5,7 @@ ;;; Carnegie Mellon University, and has been placed in the public domain. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/format.lisp,v 1.85 2008/03/13 12:57:05 rtoy Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/format.lisp,v 1.86 2008/03/26 16:43:48 rtoy Exp $") ;;; ;;; ********************************************************************** ;;; @@ -1487,7 +1487,7 @@ (let* ((signstr (if (minusp (float-sign number)) "-" (if atsign "+" ""))) (signlen (length signstr))) (multiple-value-bind (str strlen ig2 ig3 pointplace) - (lisp::flonum-to-string number nil d nil) + (lisp::flonum-to-string number :width nil :fdigits d :scale nil) (declare (ignore ig2 ig3)) (when colon (write-string signstr stream)) (dotimes (i (- w signlen (max 0 (- n pointplace)) strlen)) -- GitLab