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

Re: svn commit: r16046 - trunk/subversion/libsvn_repos

From: <kfogel_at_collab.net>
Date: 2005-09-20 02:37:52 CEST

danderson@tigris.org writes:
> --- trunk/subversion/libsvn_repos/commit.c (original)
> +++ trunk/subversion/libsvn_repos/commit.c Sun Sep 4 19:47:38 2005
> @@ -665,6 +665,14 @@
> svn_error_t *err;
> const char *conflict;
>
> + /* If no transaction has been created (ie. if open_root wasn't
> + called before close_edit), abort the operation here with an
> + error. */
> + if ((! eb->txn) || (! eb->txn_owner))
> + return svn_error_create(SVN_ERR_REPOS_BAD_ARGS, NULL,
> + "No valid transaction supplied to "
> + "close_edit");
> +

In r16161, I put the whole string on one line, since it fits.

I neglected, however, to add the space before the opening paren of the
function call. The rest of the file is in that style, but I don't
think it's worth another commit to fix this, since it doesn't cost
vertical space like the string thing did.

-Karl

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Tue Sep 20 03:43:39 2005

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.