From 2fcab2a716d2f770aa1efd0a2ee36f8b3b55d808 Mon Sep 17 00:00:00 2001 From: Sven Wischnowsky Date: Tue, 11 Apr 2000 08:22:57 +0000 Subject: _make uses $words[1] for command name (10635) --- Completion/User/_make | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'Completion') diff --git a/Completion/User/_make b/Completion/User/_make index 5161e6689..95152635a 100644 --- a/Completion/User/_make +++ b/Completion/User/_make @@ -4,12 +4,12 @@ local prev="$words[CURRENT-1]" file expl tmp (( $+_is_gnu )) || typeset -gA _is_gnu -if (( ! $+_is_gnu[$1] )); then - if [[ $(_call version $1 -v -f /dev/null /dev/null) = *GNU* ]] +if (( ! $+_is_gnu[$words[1]] )); then + if [[ $(_call version $words[1] -v -f /dev/null /dev/null) = *GNU* ]] then - _is_gnu[$1]=yes + _is_gnu[$words[1]]=yes else - _is_gnu[$1]= + _is_gnu[$words[1]]= fi fi @@ -31,7 +31,7 @@ else file='' fi - if [[ -n "$file" ]] && _wanted targets; then + if [[ -n "$file" ]] && _tags targets; then if [[ -n "$_is_gnu[$1]" ]]; then tmp=( $(make -nsp --no-print-directory -f "$file" .PHONY | awk '/^[a-zA-Z0-9][^\/\t=]+:/ {print $1}' FS=:) ) else @@ -42,7 +42,7 @@ else FS=: $file) ) fi - _all_labels targets expl 'make target' compadd "$tmp[@]" && return 0 + _wanted targets expl 'make target' compadd "$tmp[@]" && return 0 fi compset -P 1 '*=' _files -- cgit 1.4.1