Skip to content

Commit

Permalink
completion: get rid of empty COMPREPLY assignments
Browse files Browse the repository at this point in the history
There's no functional reason for those, the only purpose they are
supposed to serve is to say "we don't provide any words here", but
even for that it's not used consistently.

Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Felipe Contreras authored and Junio C Hamano committed Apr 12, 2013
1 parent cdbff7d commit 0285118
Showing 1 changed file with 0 additions and 21 deletions.
21 changes: 0 additions & 21 deletions contrib/completion/git-completion.bash
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,6 @@ __gitcomp ()

case "$cur_" in
--*=)
COMPREPLY=()
;;
*)
local IFS=$'\n'
Expand Down Expand Up @@ -614,7 +613,6 @@ __git_complete_remote_or_refspec ()
case "$cmd" in
push) no_complete_refspec=1 ;;
fetch)
COMPREPLY=()
return
;;
*) ;;
Expand All @@ -630,7 +628,6 @@ __git_complete_remote_or_refspec ()
return
fi
if [ $no_complete_refspec = 1 ]; then
COMPREPLY=()
return
fi
[ "$remote" = "." ] && remote=
Expand Down Expand Up @@ -951,7 +948,6 @@ _git_am ()
"
return
esac
COMPREPLY=()
}

_git_apply ()
Expand All @@ -971,7 +967,6 @@ _git_apply ()
"
return
esac
COMPREPLY=()
}

_git_add ()
Expand Down Expand Up @@ -1031,7 +1026,6 @@ _git_bisect ()
__gitcomp_nl "$(__git_refs)"
;;
*)
COMPREPLY=()
;;
esac
}
Expand Down Expand Up @@ -1175,7 +1169,6 @@ _git_clone ()
return
;;
esac
COMPREPLY=()
}

_git_commit ()
Expand Down Expand Up @@ -1359,7 +1352,6 @@ _git_fsck ()
return
;;
esac
COMPREPLY=()
}

_git_gc ()
Expand All @@ -1370,7 +1362,6 @@ _git_gc ()
return
;;
esac
COMPREPLY=()
}

_git_gitk ()
Expand Down Expand Up @@ -1447,7 +1438,6 @@ _git_init ()
return
;;
esac
COMPREPLY=()
}

_git_ls_files ()
Expand Down Expand Up @@ -1583,7 +1573,6 @@ _git_mergetool ()
return
;;
esac
COMPREPLY=()
}

_git_merge_base ()
Expand Down Expand Up @@ -1896,7 +1885,6 @@ _git_config ()
return
;;
*.*)
COMPREPLY=()
return
;;
esac
Expand Down Expand Up @@ -2277,7 +2265,6 @@ _git_remote ()
__gitcomp "$c"
;;
*)
COMPREPLY=()
;;
esac
}
Expand Down Expand Up @@ -2393,8 +2380,6 @@ _git_stash ()
*)
if [ -z "$(__git_find_on_cmdline "$save_opts")" ]; then
__gitcomp "$subcommands"
else
COMPREPLY=()
fi
;;
esac
Expand All @@ -2407,14 +2392,12 @@ _git_stash ()
__gitcomp "--index --quiet"
;;
show,--*|drop,--*|branch,--*)
COMPREPLY=()
;;
show,*|apply,*|drop,*|pop,*|branch,*)
__gitcomp_nl "$(git --git-dir="$(__gitdir)" stash list \
| sed -n -e 's/:.*//p')"
;;
*)
COMPREPLY=()
;;
esac
fi
Expand Down Expand Up @@ -2531,7 +2514,6 @@ _git_svn ()
__gitcomp "--revision= --parent"
;;
*)
COMPREPLY=()
;;
esac
fi
Expand All @@ -2556,13 +2538,10 @@ _git_tag ()

case "$prev" in
-m|-F)
COMPREPLY=()
;;
-*|tag)
if [ $f = 1 ]; then
__gitcomp_nl "$(__git_tags)"
else
COMPREPLY=()
fi
;;
*)
Expand Down

0 comments on commit 0285118

Please sign in to comment.