[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: CR in notify.c

From: Philip Martin <philip_at_codematters.co.uk>
Date: Tue, 08 Aug 2017 23:12:11 +0100

Philip Martin <philip_at_codematters.co.uk> 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
Received on 2017-08-09 00:12:21 CEST

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.