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

Re: CVS update: subversion/subversion/libsvn_fs Makefile.am editor.c

From: Karl Fogel <kfogel_at_galois.collab.net>
Date: 2001-02-20 18:28:42 CET

Greg Stein <gstein@lyra.org> writes:
> On Sat, Feb 17, 2001 at 01:48:17AM -0000, kfogel@tigris.org wrote:
> >...
> > +/* Helper for delete_node and delete_entry. */
> > +struct deletion_baton
> > +{
> > + struct dir_baton *parent;
> > + svn_string_t *name;
> > +};
> > +
> > +
> > +/* Helper for delete_entry. */
> > +static svn_error_t *
> > +delete_name_in_node (void *del_baton, trail_t *trail)
> > +{
> > + struct deletion_baton *delb = del_baton;
> > + svn_error_t *err;
> > +
> > + err = svn_fs__dag_delete (delb->parent->node, delb->name->data, trail);
> > + if (err)
> > + return err;
> > +
> > + return SVN_NO_ERROR;
> > +}
>
> I believe Jim has been using "FOO_args" for the structure name, and
> "txn_body_FOO" for the retry-function.

Thanks! I'll investigate further...

-K
Received on Sat Oct 21 14:36:22 2006

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.