]> git.ipfire.org Git - thirdparty/git.git/commitdiff
diff: leave NEEDWORK notes in show_stats() function
authorJunio C Hamano <gitster@pobox.com>
Fri, 21 Oct 2022 21:53:25 +0000 (14:53 -0700)
committerJunio C Hamano <gitster@pobox.com>
Fri, 21 Oct 2022 22:02:31 +0000 (15:02 -0700)
The previous step made an attempt to correctly compute display
columns allocated and padded different parts of diffstat output.
There are at least two known codepaths in the function that still
mixes up display widths and byte length that need to be fixed.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
diff.c

diff --git a/diff.c b/diff.c
index 2751cae1315a17a4de692a7a6f8a55a0ffb032f1..1d222d87b2ae4018ee1a10c8f9bad6af0ce05045 100644 (file)
--- a/diff.c
+++ b/diff.c
@@ -2675,6 +2675,11 @@ static void show_stats(struct diffstat_t *data, struct diff_options *options)
         * making the line longer than the maximum width.
         */
 
+       /*
+        * NEEDSWORK: line_prefix is often used for "log --graph" output
+        * and contains ANSI-colored string.  utf8_strnwidth() should be
+        * used to correctly count the display width instead of strlen().
+        */
        if (options->stat_width == -1)
                width = term_columns() - strlen(line_prefix);
        else
@@ -2750,6 +2755,16 @@ static void show_stats(struct diffstat_t *data, struct diff_options *options)
                        char *slash;
                        prefix = "...";
                        len -= 3;
+                       /*
+                        * NEEDSWORK: (name_len - len) counts the display
+                        * width, which would be shorter than the byte
+                        * length of the corresponding substring.
+                        * Advancing "name" by that number of bytes does
+                        * *NOT* skip over that many columns, so it is
+                        * very likely that chomping the pathname at the
+                        * slash we will find starting from "name" will
+                        * leave the resulting string still too long.
+                        */
                        name += name_len - len;
                        slash = strchr(name, '/');
                        if (slash)