1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-10-22 16:20:23 +02:00

completion: git: add missing return to __git_recent_commits

This commit is contained in:
Daniel Hahler 2015-05-17 19:54:15 +02:00
parent 7990cf983e
commit 895408bb81

View file

@ -5691,6 +5691,7 @@ __git_recent_commits () {
_wanted heads expl 'head' compadd "$@" -a - heads && ret=0
expl=()
_describe -2Vx -t commits 'commit object name' descr && ret=0
return $ret
}
(( $+functions[__git_blob_objects] )) ||