1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-09-22 03:40:47 +02:00

use colon separator for BSD (15393)

This commit is contained in:
Oliver Kiddle 2001-07-17 11:06:24 +00:00
parent 72b56dc458
commit 0f2919ceb1
2 changed files with 6 additions and 1 deletions

View File

@ -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,

View File

@ -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='.'