[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: Karl Fogel <kfogel_at_red-bean.com>
Date: Wed, 19 Mar 2008 13:44:24 -0400

"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.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe_at_subversion.tigris.org
For additional commands, e-mail: dev-help_at_subversion.tigris.org
Received on 2008-03-19 18:44:37 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.