Hi, On Tue, May 10, 2011 at 05:10:16PM -0400, Jeff King wrote: > On Tue, May 10, 2011 at 11:02:53PM +0200, Sverre Rabbelier wrote: > > > On Tue, May 10, 2011 at 23:01, Jeff King <peff@xxxxxxxx> wrote: > > > Right. Bash calls into our __git() completion function, which calls the > > > implementation of _get_comp_words_by_ref from /etc/bash_completion, > > > which has the bug. If you don't source git completion, then you are just > > > getting bash's default file completion. > > > > So should we file this bug with bash's completion people? > > Probably, but it would be nice to reduce it to a smaller test case (or > one that happens just with completions shipped by Debian) just to rule > out anything git is doing. Thinking a bit more about it, you don't even need to search history to reproduce. Try this: _foo () { local prev _get_comp_words_by_ref prev } complete -F _foo foo Then type "foo", go back to the very beginning of the command line, and then press TAB, and the same "bash: words: bad array subscript" error appears. So the bug is definitely not git-related. The fix would be a check along the lines of the first two hunks of the patch I just sent out. Oddly enough, the bash-completion folks had a similar check in the now deprecated _get_pword() function, that didn't made it into _get_comp_words_by_ref()... Best, Gábor -- 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