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