diff options
author | Oliver Kiddle <opk@users.sourceforge.net> | 2000-06-08 14:36:24 +0000 |
---|---|---|
committer | Oliver Kiddle <opk@users.sourceforge.net> | 2000-06-08 14:36:24 +0000 |
commit | 748ab4f791b3dab0eed2d4baad16aaa5e0fb64a8 (patch) | |
tree | 60c090d7fe87b4ad613e15e8e538bd23045f780c /Completion | |
parent | 45d95dde4817285de344aea414e4543ef79efaab (diff) | |
download | zsh-748ab4f791b3dab0eed2d4baad16aaa5e0fb64a8.tar.gz zsh-748ab4f791b3dab0eed2d4baad16aaa5e0fb64a8.tar.xz zsh-748ab4f791b3dab0eed2d4baad16aaa5e0fb64a8.zip |
avoid bug in IRIX's sed and use new -K option to zparseopts in _urls
Diffstat (limited to 'Completion')
-rw-r--r-- | Completion/User/_urls | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Completion/User/_urls b/Completion/User/_urls index f9aa69f6d..d8c737fb5 100644 --- a/Completion/User/_urls +++ b/Completion/User/_urls @@ -52,8 +52,8 @@ if [[ "$1" = -f ]]; then _wanted -C -f files expl file _files "$@" && return 0 fi -zparseopts -D -E g:=glob -: ${(A)=glob:=-g '*(^/)'} +glob=(-g '*(^/)') +zparseopts -D -K -E g:=glob ipre="$IPREFIX" |