about summary refs log tree commit diff
path: root/Completion/User/_make
diff options
context:
space:
mode:
authorTanaka Akira <akr@users.sourceforge.net>1999-11-22 23:56:17 +0000
committerTanaka Akira <akr@users.sourceforge.net>1999-11-22 23:56:17 +0000
commit45e6b554257e7810069133722a88d0657186c993 (patch)
treef239dad8e0f80182784966c4c8adf7a7f5ef1112 /Completion/User/_make
parentabe6b42d1f57ed4114778f79ecc4723b70b86122 (diff)
downloadzsh-45e6b554257e7810069133722a88d0657186c993.tar.gz
zsh-45e6b554257e7810069133722a88d0657186c993.tar.xz
zsh-45e6b554257e7810069133722a88d0657186c993.zip
manual/8738
Diffstat (limited to 'Completion/User/_make')
-rw-r--r--Completion/User/_make12
1 files changed, 6 insertions, 6 deletions
diff --git a/Completion/User/_make b/Completion/User/_make
index 2e967e64e..99adb7133 100644
--- a/Completion/User/_make
+++ b/Completion/User/_make
@@ -18,11 +18,11 @@ else
     file=''
   fi
 
-   [[ -n "$file" ]] && _wanted targets expl 'make target' &&
-       compadd "$expl[@]" - \
-           $(awk '/^[a-zA-Z0-9][^\/ \t]+:/ {print $1}
- 	         /^\.include  *<bsd\.port\.(subdir\.|pre\.)?mk>/ || /^\.include  *".*mk\/bsd\.pkg\.(subdir\.)?mk"/ {
- 	           print "fetch fetch-list extract patch configure build install reinstall deinstall package describe checkpatch checksum makesum" }' \
- 	        FS=: $file) && ret=0
+  [[ -n "$file" ]] && _wanted targets expl 'make target' &&
+      compadd "$expl[@]" - \
+          $(awk '/^[a-zA-Z0-9][^\/ \t]+:/ {print $1}
+ 	      /^\.include  *<bsd\.port\.(subdir\.|pre\.)?mk>/ || /^\.include  *".*mk\/bsd\.pkg\.(subdir\.)?mk"/ {
+ 	        print "fetch fetch-list extract patch configure build install reinstall deinstall package describe checkpatch checksum makesum" }' \
+ 	     FS=: $file) && ret=0
   (( ret )) && { compset -P 1 '*\='; _files }
 fi