Better (less complex) way of counting the branch name length.
diff --git a/git-flow-support b/git-flow-support
index 3139f22..06bea16 100644
--- a/git-flow-support
+++ b/git-flow-support
@@ -46,7 +46,7 @@
 	typeset -i width=0
 	typeset branch
 	for branch in $short_names; do
-		typeset -i len=$(($(echo "$branch" | wc -c) - 1))
+		typeset -i len=${#branch}
 		width=$(max $width $len)
 	done
 	width=width+3