Thomas Rast <t...@thomasrast.ch> writes:

> +static void assemble_conflict_entry(struct strbuf *sb,
> +                                 const char *branch1,
> +                                 const char *branch2,
> +                                 struct cache_entry *entry1,
> +                                 struct cache_entry *entry2)
> +{
> +     strbuf_addf(sb, "<<<<<<< %s\n", branch1);
> +     strbuf_append_cache_entry_blob(sb, entry1);
> +     strbuf_addstr(sb, "=======\n");
> +     strbuf_append_cache_entry_blob(sb, entry2);
> +     strbuf_addf(sb, ">>>>>>> %s\n", branch2);
> +}

I didn't read 6 thru 8 as carefully as I did the earlier ones, but
this part stood out.  How does the above hardcoded markers interact
with the conflict-marker-size attribute set to the path?

--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to