Am 6/10/2014 1:23, schrieb Junio C Hamano:
> Elia Pinto <gitter.spi...@gmail.com> writes:
> 
>> @@ -1059,13 +1059,17 @@ cmd_summary() {
>>              while read mod_src mod_dst sha1_src sha1_dst status sm_path
>>              do
>>                      # Always show modules deleted or type-changed 
>> (blob<->module)
>> -                    test $status = D -o $status = T && echo "$sm_path" && 
>> continue
>> +                    case "$status" in
>> +                    [DT])
>> +                            printf '%s\n' "$sm_path" &&
>> +                            continue
>> +                    esac
> 
> I think this conversion is wrong and causes parse error.  The
> surrounding code cannot be seen in the context of thsi patch, but
> looks somewhat like this:
> 
>       modules=$( ....
>                    case "$status" in
>                    [DT])
>                            ...
>                    esac
>                    .... )
> 
> Perhaps you would need to spell it with the extra opening
> parenthesis, like so:
> 
>       case string in
>         ([DT])
>               ...
>       esac
> 
> or something.

Do you just think that it causes parse errors or did you actually observe
them? Because I think that no parse error should occur.

-- Hannes
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to