about summary refs log tree commit diff
path: root/Completion/User
diff options
context:
space:
mode:
authorSven Wischnowsky <wischnow@users.sourceforge.net>2000-05-19 08:24:16 +0000
committerSven Wischnowsky <wischnow@users.sourceforge.net>2000-05-19 08:24:16 +0000
commitf9e65c2b1f448cd27c597ec727b63bebde2fbdff (patch)
tree816fd81472f634d8b19cc8aff9400c7644b22f77 /Completion/User
parentaa86df8d1c3daeb0b267ad16cdca647247530696 (diff)
downloadzsh-f9e65c2b1f448cd27c597ec727b63bebde2fbdff.tar.gz
zsh-f9e65c2b1f448cd27c597ec727b63bebde2fbdff.tar.xz
zsh-f9e65c2b1f448cd27c597ec727b63bebde2fbdff.zip
don't use $match for something different than (#b)ackrefs (11464)
Diffstat (limited to 'Completion/User')
-rw-r--r--Completion/User/_enscript2
-rw-r--r--Completion/User/_finger2
-rw-r--r--Completion/User/_urls2
3 files changed, 3 insertions, 3 deletions
diff --git a/Completion/User/_enscript b/Completion/User/_enscript
index 21c388bb9..c5de3375a 100644
--- a/Completion/User/_enscript
+++ b/Completion/User/_enscript
@@ -1,6 +1,6 @@
 #compdef enscript
 
-local state context line curcontext="$curcontext"
+local state context line curcontext="$curcontext" match
 typeset -A opt_args
 
 _arguments -C -s \
diff --git a/Completion/User/_finger b/Completion/User/_finger
index c5787571c..74b97521e 100644
--- a/Completion/User/_finger
+++ b/Completion/User/_finger
@@ -1,6 +1,6 @@
 #compdef finger
 
-local curcontext="$curcontext" state line
+local curcontext="$curcontext" state line match
 typeset -A opt_args
 
 if (( ! $+_finger_args )); then
diff --git a/Completion/User/_urls b/Completion/User/_urls
index f335b16aa..691a386ec 100644
--- a/Completion/User/_urls
+++ b/Completion/User/_urls
@@ -38,7 +38,7 @@
 #    E.g.:
 #      zstyle ':completion:*:urls' local www /usr/local/apache/htdocs public_html
 
-local ipre scheme host user uhosts ret=1 expl
+local ipre scheme host user uhosts ret=1 expl match
 local urls_path localhttp
 zstyle -s ":completion:${curcontext}:urls" path urls_path ||
     urls_path="${ZDOTDIR:-$HOME}/.zsh/urls"