On Sun, 8 Jul 2007, Junio C Hamano wrote: > Are _identifiers with leading underscore Kosher thing to do, I > wonder... We do have ones with trailing ones (mostly qsort > functions) and I think they are done that way for the sake of > standards conformance. I'm not sure; I inherited that bit of code from Julian. Do we have a standard idiom for a function that sets a bunch of static variables? > diff --git a/fetch-pack.h b/fetch-pack.h > new file mode 100644 > index 0000000..2bd05a8 > --- /dev/null > +++ b/fetch-pack.h > @@ -0,0 +1,16 @@ > +#ifndef FETCH_PACK_API > > We seem to say "#ifndef FETCH_PACK_H" in such a case, though. I was trying to convey that this is the C API to call fetch-pack directly, rather than something used by the builtin, or by the wrapper for calling the builtin. But the inclusion guard is probably not going to be noticed anyway, and I don't think it's worth making the header filename verbose. > Nobody seems to call setup_fetch_pack() yet. How complete is > this patch meant to be? It's part of a series that leads up to making fetch a builtin. I'm trying to get in bits that are bounded by logical APIs. The roadmap here is that transport.{c,h} from one of my other patches will get a function to fetch a set of refs, and it will (for a suitable URL format) call setup_fetch_pack() with the appropriate options and then call fetch_pack(). builtin-fetch will use this function to actually get objects once it has determined which ones it should get. I think I've now got the whole series to a point where everything's submittable, if you'd like to see the whole thing. It's actually composed of 6 initial independant sub-series (mostly single patches) of which I've submitted 4 (three today and the one that modularizes the commit-walker infrastructure and removes the obsolete ones), and a final series of 3 that implements fetch on top of the rest. How should I number this? -Daniel *This .sig left intentionally blank* - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html