diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Completion/Unix/Type/_path_files | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog index d0e0cc1cc..67e57fa59 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,9 @@ 2008-10-28 Peter Stephenson <p.w.stephenson@ntlworld.com> - * 25937: README, Src/builtins.c: builtins that don't have + * 25938 (Mikael) + probably 25939, too: + Completion/Unix/Type/_path_files: IPREFIX missing $. + + * 25937: README, Src/builtin.c: builtins that don't have options now ignore an initial "--" argument. 2008-10-28 Peter Stephenson <pws@csr.com> diff --git a/Completion/Unix/Type/_path_files b/Completion/Unix/Type/_path_files index 28df7e1ba..378c45441 100644 --- a/Completion/Unix/Type/_path_files +++ b/Completion/Unix/Type/_path_files @@ -732,7 +732,7 @@ for prepath in "$prepaths[@]"; do compquote tmp4 tmp2 tmp1 for i in "$tmp1[@]"; do _list_files tmp2 "$prepath$realpath${mid%/*/}" - compadd $Uopt -Qf "$mopts[@]" -p "${Uopt:+IPREFIX}$linepath$tmp3/" \ + compadd $Uopt -Qf "$mopts[@]" -p "${Uopt:+$IPREFIX}$linepath$tmp3/" \ -s "/$tmp4$i${Uopt:+$ISUFFIX}" \ -W "$prepath$realpath${mid%/*/}/" \ "$pfxsfx[@]" $listopts - "$tmp2" @@ -763,7 +763,7 @@ for prepath in "$prepaths[@]"; do else # Not a pattern match _list_files tmp1 "$prepath$realpath$testpath" - compadd $Uopt -Qf -p "${Uopt:+IPREFIX}$linepath$tmp4" \ + compadd $Uopt -Qf -p "${Uopt:+$IPREFIX}$linepath$tmp4" \ -s "${Uopt:+$ISUFFIX}" \ -W "$prepath$realpath$testpath" \ "$pfxsfx[@]" "$mopts[@]" $listopts -a tmp1 |