Re: [PATCH] gitk: Do not mistake unchanged lines with submodule changes

2019-09-15 Thread Paul Mackerras
On Sat, Mar 23, 2019 at 06:00:36PM +0100, Gabriele Mazzotta wrote: > Unchanged lines are prefixed with a white-space, thus unchanged lines > starting with either " <" or " >" are mistaken for submodule changes. > Check if a line starts with either " <" or " >" only if we listing > the changes of

[PATCH] gitk: Do not mistake unchanged lines with submodule changes

2019-03-23 Thread Gabriele Mazzotta
Unchanged lines are prefixed with a white-space, thus unchanged lines starting with either " <" or " >" are mistaken for submodule changes. Check if a line starts with either " <" or " >" only if we listing the changes of a submodule. Signed-off-by: Gabriele Mazzotta --- gitk | 4 ++-- 1 file

Re: [PATCH] gitk: Do not mistake unchanged lines with submodule changes

2018-10-21 Thread Gabriele Mazzotta
On 21/10/18 18:34, Dummy Name wrote: > From: Gabriele Mazzotta > > Unchanged lines are prefixed with a white-space, thus unchanged lines > starting with either " <" or " >" are mistaken for submodule changes. > Check if a line starts with either " <" or " >" only if we listing > the changes of

[PATCH] gitk: Do not mistake unchanged lines with submodule changes

2018-10-21 Thread Dummy Name
From: Gabriele Mazzotta Unchanged lines are prefixed with a white-space, thus unchanged lines starting with either " <" or " >" are mistaken for submodule changes. Check if a line starts with either " <" or " >" only if we listing the changes of a submodule. Signed-off-by: Gabriele Mazzotta -