> if (user_redefined_changed) > if (user_defn_of_changed(work, head)) commit(work); else > if (builtin_changed(work, head)) commit(work); That didn't come out quite right. It should be: if (user_redefined_changed) { if (user_defn_of_changed(work, head)) { commit(work); } } else { if (builtin_changed(work, head)) { commit(work); } } - 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