Hello,

Can someone take care of this bug? It's a small one and should be
easy to forward upstream. Yet it really annoys me in my day-to-day
usage of git.

TIA.

On Tue, 08 Oct 2013, Raphaël Hertzog wrote:
> Here's an example of the problematic output:
> 
> -----
> # Modifications qui seront validées :
> #
> #     modifié : debian/bin/gencontrol.py
> [...]
> # Chemins non fusionnés :
> #   (utilisez "git add <fichier>..." pour marquer résolu)
> #
> #     modifié des deux côtés :debian/control
> -----
> 
> The first part is fine, but the second part is problematic because there's
> no space after the colon and it makes it impossible to select the filename
> with a simple double click. The colon will always be included when it
> shouldn't.
> 
> I suggest the following patch to fix this:
> 
> diff --git a/wt-status.c b/wt-status.c
> index cb24f1f..758956a 100644
> --- a/wt-status.c
> +++ b/wt-status.c
> @@ -255,7 +255,7 @@ static void wt_status_print_unmerged_data(struct 
> wt_status *s,
>       case 6: how = _("both added:"); break;
>       case 7: how = _("both modified:"); break;
>       }
> -     status_printf_more(s, c, "%-20s%s\n", how, one);
> +     status_printf_more(s, c, "%-19s %s\n", how, one);
>       strbuf_release(&onebuf);
>  }
-- 
Raphaël Hertzog ◈ Debian Developer

Discover the Debian Administrator's Handbook:
→ http://debian-handbook.info/get/


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Reply via email to