mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-01-30 15:02:18 +01:00
use colon separator for BSD (15393)
This commit is contained in:
parent
72b56dc458
commit
0f2919ceb1
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2001-07-17 Oliver Kiddle <opk@zsh.org>
|
||||
|
||||
* 15393 (Akinori Musha): Completion/Unix/Command/_chown: use
|
||||
colon separator for BSD
|
||||
|
||||
2001-07-17 Sven Wischnowsky <wischnow@zsh.org>
|
||||
|
||||
* 15400: Completion/Unix/Type/_path_files,
|
||||
|
|
|
@ -9,7 +9,7 @@ if [[ CURRENT -eq 2 || CURRENT -eq 3 && $words[CURRENT-1] = -* ]]; then
|
|||
fi
|
||||
_groups && return 0
|
||||
else
|
||||
if [[ $OSTYPE = (solaris*|hpux*) ]]; then
|
||||
if [[ $OSTYPE = (solaris*|hpux*|*bsd*) ]]; then
|
||||
suf=':'
|
||||
else
|
||||
suf='.'
|
||||
|
|
Loading…
Reference in a new issue