Re: Bug in srfi-48?

Donald Allen <[email protected]> Thu, 12 Oct 2017 22:09:57 -0400
Newsgroups gmane.lisp.scheme.srfi.srfi-48
Message-ID <CAPsTYbw==Xkqc7yteqHV-m_HBcNjQoSoG8CWyDPUqQO1v9LS9Q@mail.gmail.com>
On 12 October 2017 at 19:13, Arthur A. Gleckler <[email protected]> wrote:
> On Thu, Oct 12, 2017 at 12:42 PM, Donald Allen <[email protected]>
> wrote:
>
>>
>> Sorry, I wasn't clear. I was talking about this:
>
>
> I apologize.  That should have been obvious to me.  I've been trying to do
> too many things at once over the past few days.
>
> Would you mind trying Shiro Kawai's patch?

I applied both yours and Shiro Kawai"s patches:

1>  (format "~a & ~7,2F\\%\\\\\n" "Framingham Mass Muni Purpose Loan"
1.997554209949891)
"Framingham Mass Muni Purpose Loan &    2.00\\%\\\\\n"
1>  (format "~a & ~7,2F\\%\\\\\n" "Framingham Mass Muni Purpose Loan"
.997554209949891)
"Framingham Mass Muni Purpose Loan &    1.00\\%\\\\\n"
1> (format "~7,2F" .997554209949891)
"   1.00"
1> (format "~7,2F" .99755420)
"   1.00"
1> (format "~7,2F" .99755)
"   1.00"
1> (format "~7,2F" .997)
"   1.00"
1> (format "~7,2F" .99)
"    .99"
1>

Looks good. Thanks very much.

/Don

>
> (Thank you, Mr. Kawai.)