diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | Completion/Unix/Command/_apm | 9 |
2 files changed, 7 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog index 4eed30e4e..e696d1efc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2000-04-03 Clint Adams <schizo@debian.org> + + * 13899: Completion/Unix/Command/_apm: add $OSTYPE checking. + 2001-04-03 Oliver Kiddle <opk@zsh.org> * 13898, Bart: 13827: Completion/Zsh/Command/_ttyctl, diff --git a/Completion/Unix/Command/_apm b/Completion/Unix/Command/_apm index aedc814e0..f4fcaa3ef 100644 --- a/Completion/Unix/Command/_apm +++ b/Completion/Unix/Command/_apm @@ -1,9 +1,6 @@ #compdef apm -# this needs intelligence -local kludge=linux - -if [[ $kludge == "linux" ]] +if [[ $OSTYPE == linux* ]] then _arguments -C -s \ @@ -22,7 +19,7 @@ _arguments -C -s \ '(--ignore)-i[tell the system to ignore system-generated APM message]' \ '(-i)--ignore[tell the system to ignore system-generated APM message]' -elif [[ $kludge == "freebsd4.1" ]] +elif [[ $OSTYPE == freebsd* ]] then _arguments -C \ @@ -38,7 +35,7 @@ _arguments -C \ '-Z[transition system into standby mode]' \ '-z[suspend the system]' -elif [[ $kludge == "openbsd2.7" ]] +elif [[ $OSTYPE == openbsd* ]] then _arguments -C \ |