Output from "git branch -v" contains "(no branch)" that could be
localized, but the code to align it along with the names of branches
were counting in bytes, not in display columns.
* nd/branch-v-alignment:
branch -v: align even when branch names are in UTF-8
@ -249,7 +250,7 @@ static int delete_branches(int argc, const char **argv, int force, int kinds,
@@ -249,7 +250,7 @@ static int delete_branches(int argc, const char **argv, int force, int kinds,
struct ref_item {
char *name;
char *dest;
unsigned int kind, len;
unsigned int kind, width;
struct commit *commit;
};
@ -354,14 +355,14 @@ static int append_ref(const char *refname, const unsigned char *sha1, int flags,
@@ -354,14 +355,14 @@ static int append_ref(const char *refname, const unsigned char *sha1, int flags,