Re: New draft
Alex Shinn <[email protected]> Tue, 30 Dec 2003 23:04:11 -0600
| Newsgroups | gmane.lisp.scheme.srfi.srfi-48 |
|---|---|
| Message-ID | <[email protected]> |
--text follows this line-- At Wed, 31 Dec 2003 01:31:13 +0000, Francisco Solsona wrote: > > The newest draft for SRFI-48 is now in place. In includes ~F, and > ~W, as well as a new Issues section. You can access it here: > > http://srfi.schemers.org/srfi-48/srfi-48.html Two minor comments: This doesn't have the fix for properly handling newlines in ~A. It should pass the test (format "~A~A~&" "\n" "") => "\n" Also ascii-tab is written first "ascii-tab" then "ASCII-TAB", which doesn't work on Schemes that default to case-sensitive readers. It wouldn't be worth supporting such non-standard behavior in general, but since most people consider it good style not to change the case of identifiers the reference implementation should probably use a consistent case. -- Alex