> - moved_from_line = apr_psprintf(pool, "\n > %s %s",
> - _("moved from"), relpath);
> + moved_from_line = apr_psprintf(pool,
> + apr_psprintf(pool,
> + "\n > %s",
> + _("moved from %s")),
> + relpath);I found sprintf inside sprintf to be quite confusing, so I changed it to sprintf inside strcat, in r1158343. strcat seemed appropriate anyway, even without the confusing nesting issue. Hope nobody minds. -- Peter Samuelson | org-tld!p12n!peter | http://p12n.org/

