Hello, Petr!
On Fri, 2006-03-03 at 09:11 -0500, Pavel Roskin wrote:
On Thu, 2006-03-02 at 21:27 -0800, Junio C Hamano wrote:
quoted
Pavel Roskin [off-list ref] writes:
quoted
- ARGS2["${#ARGS2[@]}"]="$_git_relpath${arg%/}"
+ ARGS2[${#ARGS2[@]}]="$_git_relpath${arg%/}"
Any issues with this patch? FC5 is due in a week. Expect and outcry
from the new bash 3.1.7 users if the fixed cogito is not available
shortly.
Bash is not as wrong as it may seem. Left hand side in assignments is
already a special case in earlier versions of bash, just not in the
index:
bash 3.00.16 (FC4)
$ f"oo"=bar
bash: foo=bar: command not found
$ foo["0"]=bar
$
bash 3.1.7 (FC5)
$ f"oo"=bar
bash: foo=bar: command not found
$ foo["0"]=bar
bash: "0": syntax error: operand expected (error token is ""0"")
$
--
Regards,
Pavel Roskin