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

Re: [PATCH] svn log url -rXXX should display proper error message

From: Bhuvaneswaran Arumugam <bhuvan_at_collab.net>
Date: Wed, 19 Mar 2008 23:21:11 +0530

On Wed, 2008-03-19 at 13:44 -0400, Karl Fogel wrote:
> "Bhuvaneswaran Arumugam" <bhuvan_at_collab.net> writes:
> > --- subversion/libsvn_client/client.h (revision 29949)
> > +++ subversion/libsvn_client/client.h (working copy)
> > @@ -1059,6 +1059,19 @@
> > svn_client_ctx_t *ctx,
> > apr_pool_t *pool);
> >
> > +
> > +/** Return TRUE iff revision kind is dependent on the working copy.
> > + * Otherwise, return FALSE.
> > + *
> > + * @since New in 1.6.
> > + */
> > +#define SVN_CLIENT__REVKIND_NEEDS_WC(kind) \
> > + (((kind) == svn_opt_revision_base || \
> > + (kind) == svn_opt_revision_previous || \
> > + (kind) == svn_opt_revision_working || \
> > + (kind) == svn_opt_revision_committed) \
> > + ? TRUE : FALSE)
> > +
>
> Don't need the "@since New in 1.6." tag for internal namespaces :-).
> (Sorry, I should have pointed that out before.)
>
> Otherwise, +1.

Committed the revised fix in r29961. Thanks for your time Karl!

-- 
Regards,
Bhuvaneswaran

Received on 2008-03-19 18:51:22 CET

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.