On Fri, Jul 19, 2013 at 12:07 AM, Jonas Fonseca <fonseca@xxxxxxx> wrote: > On Thu, Jul 18, 2013 at 9:30 AM, Drew Northup <n1xim.email@xxxxxxxxx> wrote: >> >> Somehow this patch breaks the main view to not open the correct commit in diff view when <enter> is pressed. Back to the debugger... > > Does this (possibly white-space damaged) patch work for you? I did look back at that sort of fix, but I kept getting compiler warnings about a pointer conversion. Yes, it does work (I was actually initializing the whole buffer to NULL), but I'd prefer doing so without the implicit int* conversion warnings. > diff --git a/tig.c b/tig.c > index ba9ba98..74a2928 100644 > --- a/tig.c > +++ b/tig.c > @@ -3104,7 +3104,7 @@ format_expand_arg(struct format_context *format, > const char *name) > static bool > format_append_arg(struct format_context *format, const char > ***dst_argv, const char *arg) > { > - format->bufpos = 0; > + format->buf[0] = format->bufpos = 0; > > while (arg) { > char *next = strstr(arg, "%("); -- -Drew Northup -------------------------------------------------------------- "As opposed to vegetable or mineral error?" -John Pescatore, SANS NewsBites Vol. 12 Num. 59 -- 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