SZEDER Gábor <szeder@xxxxxxxxxx> writes: > Hope that I got the commit message right (; It was very readable. Thanks. > +__git_has_doubledash () > +{ > + local c=1 > + while [ $c -lt $COMP_CWORD ]; do > + if [ "--" = "${COMP_WORDS[c]}" ]; then > + return 0 > + fi > + c=$((++c)) This assignment is somewhat curious, although it should work as expected either way ;-) Shawn? -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html