Add 'human' date format
[gitweb.git] / builtin / blame.c
index 5a0388aaef580e8d3592e1b5b767618fe638ca0b..7b6235321c3bdb5496cb351af8504c3d60da9bba 100644 (file)
@@ -917,6 +917,10 @@ int cmd_blame(int argc, const char **argv, const char *prefix)
                 */
                blame_date_width = utf8_strwidth(_("4 years, 11 months ago")) + 1; /* add the null */
                break;
+       case DATE_HUMAN:
+               /* If the year is shown, no time is shown */
+               blame_date_width = sizeof("Thu Oct 19 16:00");
+               break;
        case DATE_NORMAL:
                blame_date_width = sizeof("Thu Oct 19 16:00:04 2006 -0700");
                break;