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

Re: CVS update: subversion/subversion/libsvn_wc status.c Makefile.am wc.h

From: Branko Èibej <brane_at_xbc.nu>
Date: 2000-10-25 01:22:17 CEST

sussman@tigris.org wrote:
> Implemented `svn status' command.
[snip]
> +print_status (svn_wc__status_t *status, svn_string_t *name)
> +{
> + char statuschar;
> +
> + switch (status->flag)
> + {
> + case svn_wc_status_none:
> + statuschar = '-';
> + break;
> + case svn_wc_status_added:
> + statuschar = 'A';
> + break;
> + case svn_wc_status_deleted:
> + statuschar = 'D';
> + break;
> + case svn_wc_status_modified:
> + statuschar = 'M';
> + break;
> + default:
> + statuschar = '?';
> + break;
> + }

I thought it should be possible for status to report that a file
is currently in conflict? After an update, of course. Oh, that would
be nice! Let's not have any ">>>>>>"'s in working copy files, let's
not have to update to see conflicts ...

-- 
Brane �ibej
  home:   <brane_at_xbc.nu>            http://www.xbc.nu/brane/
   ACM:   <brane_at_acm.org>           http://www.acm.org/
Received on Sat Oct 21 14:36:12 2006

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.