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

Re: svn commit: r29948 - in trunk/subversion: include libsvn_client

From: David Glasser <glasser_at_davidglasser.net>
Date: Mon, 31 Mar 2008 13:07:02 -0700

On Wed, Mar 19, 2008 at 5:50 AM, <bhuvan_at_tigris.org> wrote:
> Author: bhuvan
> Date: Wed Mar 19 05:50:54 2008
> New Revision: 29948
>
> Log:
> If working copy dependent revision kind is used for 'svn log url -rXXX'
> command, display an error message. Add svn_opt_revision_working to list
> of revision kinds we should check.
>
> * subversion/include/svn_client.h
> (SVN_CLIENT_IS_WC_DEPENDENT_REVKIND): New macro to check if revision
> kind is dependent on working copy. If yes, return TRUE; otherwise,
> return FALSE.

Shouldn't this go in svn_opt?

Also, revkind isn't a term we use; the variable is called
svn_opt_revision_kind. Perhaps SVN_OPT_REVISION_KIND_DEPENDS_ON_WC?

> * subversion/libsvn_client/log.c
> (svn_client_log4): Use the new macro. Even if start/end revision kind
> is dependent on working copy, display an error message.
>
> Approved by: kameshj
>
> Modified:
> trunk/subversion/include/svn_client.h
> trunk/subversion/libsvn_client/log.c
>
> Modified: trunk/subversion/include/svn_client.h
> URL: http://svn.collab.net/viewvc/svn/trunk/subversion/include/svn_client.h?pathrev=29948&r1=29947&r2=29948
> ==============================================================================
> --- trunk/subversion/include/svn_client.h Tue Mar 18 21:41:21 2008 (r29947)
> +++ trunk/subversion/include/svn_client.h Wed Mar 19 05:50:54 2008 (r29948)
> @@ -4303,6 +4303,16 @@ svn_client_open_ra_session(svn_ra_sessio
>
> /** @} */
>
> +/** Return TRUE iff revision kind is dependent on the working copy.
> + * Otherwise, return FALSE.
> + *
> + * @since New in 1.6.
> + */

Since macros don't have types for their arguments, the docstring
should say the type of the argument (although this probably is
irrelevant if you change the name to SVN_OPT_REVISION_KIND_foo).
[
> +#define SVN_CLIENT_IS_WC_DEPENDENT_REVKIND(kind) \
> + ((kind == svn_opt_revision_base || kind == svn_opt_revision_previous || \
> + kind == svn_opt_revision_working || kind == svn_opt_revision_committed) \
> + ? TRUE : FALSE)

--dave

-- 
David Glasser | glasser@davidglasser.net | http://www.davidglasser.net/
---------------------------------------------------------------------
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-31 22:07:22 CEST

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.