Today we:* Fixed a nasty bug in search.scm
- The bulk of 0001 has to do with indentation - which is fine, but could you spin out a separate patch so that I can review the argument order changes separate from the indentation changes?
- The change seems to be the order of FIND-NEXT, which changed from (start end char) to (char start end) -- why did that happen? Where is FIND-NEXT defined? Is it an incompatibility between MIT Scheme string library and SRFI-13?
- A note - in TEST-LINE-START+END, you used #t as the last case in the COND expression. I think that's preferred in (Common) LISP, but in Scheme, the 'ELSE' keyword is available to you.
~Ryan Schwers