madsmith / bash-completion-lib

Automatically exported from code.google.com/p/bash-completion-lib
GNU General Public License v2.0
0 stars 0 forks source link

comp_include() uses $COMP_DIR but should use $COMP_PATH #40

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
comp_include() should loop over $COMP_PATH and look for an `include'
directory in each path element.

Original issue reported on code.google.com by fvu...@gmail.com on 17 Jan 2009 at 11:02

GoogleCodeExporter commented 8 years ago
comp_include() now checks each directory of $COMP_PATH for "./include/file"
instead of doing a single check for "$COMP_DIR/include/file".  This effectively
means the location of the `include' directory has moved from ./include to
./completions/include.

Changed id r81.

Original comment by fvu...@gmail.com on 23 Jan 2009 at 7:56