On Tue, Mar 3, 2020 at 11:04 PM Per Bothner <xxxxxx@bothner.com> wrote:
 
How about adding the sentence:

     If the mapper returns a string, the string is prepended to constructed string (without reversal).

and this example:

(string-unfold-right null? (lambda (x) (string  #\[ (car x) #\])) cdr '(#\a #\b #\c))
     => "[c][b][a]" 

Okay, please take a look at this diff:

  https://github.com/scheme-requests-for-implementation/srfi-140/commit/9091199a8c30274432428f634d7dc021d125887e

Thanks.