mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-10-06 09:01:13 +02:00
38703: support su options on macOS
This commit is contained in:
parent
4cacf1624f
commit
bce43df70d
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2016-06-18 Oliver Kiddle <opk@zsh.org>
|
||||||
|
|
||||||
|
* 38703: Completion/Unix/Command/_su: support su options on macOS
|
||||||
|
|
||||||
2016-06-16 Peter Stephenson <p.stephenson@samsung.com>
|
2016-06-16 Peter Stephenson <p.stephenson@samsung.com>
|
||||||
|
|
||||||
* 38693: Doc/Zsh/contrib.yo, Functions/Misc/zcalc,
|
* 38693: Doc/Zsh/contrib.yo, Functions/Misc/zcalc,
|
||||||
|
|
|
@ -25,7 +25,7 @@ case $OSTYPE in
|
||||||
)
|
)
|
||||||
first="(--help --version)${first#???}"
|
first="(--help --version)${first#???}"
|
||||||
;;
|
;;
|
||||||
*bsd*|dragonfly*)
|
*bsd*|darwin*|dragonfly*)
|
||||||
args+=(
|
args+=(
|
||||||
'-c[use settings from specified login class]:class'
|
'-c[use settings from specified login class]:class'
|
||||||
'-f[if the invoked shell is csh, prevent it from reading .cshrc]'
|
'-f[if the invoked shell is csh, prevent it from reading .cshrc]'
|
||||||
|
|
Loading…
Reference in a new issue