Johannes Schindelin schrieb: > How about this function instead? > > static void strbuf_add_column(struct strbuf *sb, > const struct column *column, const char *fmt, ...) > { > va_list ap; > > va_start(ap, fmt); > if (column->color) > strbuf_addstr(sb, column->color); > strbuf_vaddf(sb, fmt, ap); > if (column->color) > strbuf_addstr(sb, GIT_COLOR_RESET); > va_end(ap); > } > > Hmm? Except the strbuf_vaddf() is only in your private repository ;) -- Hannes -- 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