You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@subversion.apache.org by Jani Monoses <ja...@iv.ro> on 2003/04/07 15:33:22 UTC

svn status regression?

Hi
svn st -uv no longer prints entries which would be added by an update
I found that this change in revision 5438 (issue 1076 dealing with ignores)
changed the behaviour.

in subversion/clients/cmdline/status.c


-      if (! status || (skip_unrecognized && ! status->entry))
+      if (! status 
+          || (skip_unrecognized && ! status->entry)
+          || (status->text_status == svn_wc_status_none))
         continue;

and this log message


 * subversion/clients/cmdline/status.c
    (generate_status_code): Return 'I' for svn_wc_status_ignored.
    (svn_cl__print_status_list): Skip printing items whose status is
      svn_wc_status_none.

Was this intentional?

Jani.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org

Re: svn status regression?

Posted by Brian Denny <br...@briandenny.net>.
On Mon, Apr 07, 2003 at 06:33:22PM +0300, Jani Monoses wrote:
> Hi
> svn st -uv no longer prints entries which would be added by an update
> I found that this change in revision 5438 (issue 1076 dealing with ignores)
> changed the behaviour.

Fixed in revision 5581.  Thanks for the report!

-brian


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org

Re: svn status regression?

Posted by Karl Fogel <kf...@newton.ch.collab.net>.
Brian Denny <br...@briandenny.net> writes:
> > Was this intentional?
> 
> no, that wasn't intentional.  :)
> 
> i'll look at it when i get home tonight.

Thanks, Brian (and sorry for not catching this in my review, which I
should have).


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org

Re: svn status regression?

Posted by Brian Denny <br...@briandenny.net>.
On Mon, Apr 07, 2003 at 06:33:22PM +0300, Jani Monoses wrote:
> Hi
> svn st -uv no longer prints entries which would be added by an update
> I found that this change in revision 5438 (issue 1076 dealing with ignores)
> changed the behaviour.
> 
[snip] 
>
> Was this intentional?

no, that wasn't intentional.  :)

i'll look at it when i get home tonight.

-brian


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org