summaryrefslogtreecommitdiffstats
path: root/Completion/Unix/Command/_make
diff options
context:
space:
mode:
authorWayne Davison <wayned@users.sourceforge.net>2004-08-21 03:07:01 +0000
committerWayne Davison <wayned@users.sourceforge.net>2004-08-21 03:07:01 +0000
commit60b7d10a80aec0bc9135f463d1d8f9c2f6dd675c (patch)
treecbeec1981c7f347c6072503d0486918da829b642 /Completion/Unix/Command/_make
parent02070 (diff)
downloadzsh-60b7d10a80aec0bc9135f463d1d8f9c2f6dd675c.tar
zsh-60b7d10a80aec0bc9135f463d1d8f9c2f6dd675c.tar.gz
zsh-60b7d10a80aec0bc9135f463d1d8f9c2f6dd675c.tar.bz2
zsh-60b7d10a80aec0bc9135f463d1d8f9c2f6dd675c.tar.lz
zsh-60b7d10a80aec0bc9135f463d1d8f9c2f6dd675c.tar.xz
zsh-60b7d10a80aec0bc9135f463d1d8f9c2f6dd675c.tar.zst
zsh-60b7d10a80aec0bc9135f463d1d8f9c2f6dd675c.zip
- Fixed the perl code that was using the @matches array.
- Simplified the other perl code just a little.
Diffstat (limited to 'Completion/Unix/Command/_make')
-rw-r--r--Completion/Unix/Command/_make7
1 files changed, 3 insertions, 4 deletions
diff --git a/Completion/Unix/Command/_make b/Completion/Unix/Command/_make
index dc4999634..93dfcf866 100644
--- a/Completion/Unix/Command/_make
+++ b/Completion/Unix/Command/_make
@@ -27,19 +27,18 @@ else
if [[ $is_gnu = gnu ]] &&
zstyle -t ":completion:${curcontext}:targets" call-command; then
if [[ -n $useperl ]]; then
- cmdargs=(perl -F: -ane '/^[a-zA-Z0-9][^\/\t=]+:([^=]|$)/ && print "$F[0]\n"')