summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOliver Kiddle <opk@zsh.org>2021-02-13 01:15:10 +0100
committerOliver Kiddle <opk@zsh.org>2021-02-13 01:15:10 +0100
commitd909dc7323e53dfa63e12d11fa1a7bfc7e3ce81d (patch)
treef5f674dbd15bb1e3e58a43bd090ad9dd39ba8330
parent3714ee0b5868a30d7556acab337889849a3c8226 (diff)
downloadzsh-d909dc7323e53dfa63e12d11fa1a7bfc7e3ce81d.tar.gz
zsh-d909dc7323e53dfa63e12d11fa1a7bfc7e3ce81d.zip
unposted (Daniel): add exclusion list missed in recent OpenBSD update to locale completion
-rw-r--r--ChangeLog3
-rw-r--r--Completion/Unix/Command/_locale2
2 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 8a2161a81..a0bc14c99 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
2021-02-13 Oliver Kiddle <opk@zsh.org>
+ * unposted (Daniel): Completion/Unix/Command/_locale:
+ add exclusion list missed in recent OpenBSD update
+
* github #68: taiyu.len: Completion/Unix/Command/_man,
Completion/Zsh/Command/_zstyle, Doc/Zsh/compsys.yo:
support section suffix completion for man pages
diff --git a/Completion/Unix/Command/_locale b/Completion/Unix/Command/_locale
index f1ed4bf36..b2ee14ee0 100644
--- a/Completion/Unix/Command/_locale
+++ b/Completion/Unix/Command/_locale
@@ -28,7 +28,7 @@ elif [[ $OSTYPE == openbsd* ]]; then
specs=(
'(-m)-a[list all available locales]'
'(-a)-m[list all available charmaps]'
- '1:name:(charmap)'
+ '(-a -m)1:name:(charmap)'
)
else