On Fri, Mar 06, 2009 at 12:58:33AM -0800, Junio C Hamano wrote: > Jay Soffian <jaysoffian@xxxxxxxxx> writes: > > > Yeah, that part is easy. I wasn't sure the best way to handle places > > where a constant date_mode is used e.g.: > > > > pp_user_info(NULL, CMIT_FMT_EMAIL, &sb, committer, DATE_RFC2822, > > encoding); > > One approach that will be hated by libgit2 effort would be to keep the > date_mode an enum as before (sans DATE_LOCAL) and make the "tz_offset" > thing as a setting global to the process, defined in environ.c I haven't looked, but might it not be possible to put it in the rev_info struct next to the date format, but not as part of a struct? You will then sometimes have to pass two options around (the format and the tz offset) instead of one (the struct with both), but it makes split usage much easier: pp_user_info(NULL, CMIT_FMT_EMAIL, &sb, committer, DATE_RFC2822, revs->tz_offset, encoding); -Peff -- 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