Philip Martin <[email protected]> writes:
> the first will not be completely obliterated by the second.
I hacked the code rather than create a repository with millions of
revisions:
case svn_wc_notify_tree_conflict_details_progress:
- SVN_ERR(svn_cmdline_printf(pool, _("\rChecking r%ld..."), n->revision));
+ {
+ static long revision = 1111111;
+ SVN_ERR(svn_cmdline_printf(pool, _("\rChecking r%ld..."), revision));
+ revision = 99;
+ sleep(5);
+ }
break;
and it does produce garbled output:
Checking r1111111...
becomes:
Checking r99...11...
--
Philip