# HG changeset patch # User Augie Fackler # Date 1333226384 18000 # Node ID a5a3af000e0d04e94df7fb99a574ef45404e6c57 # Parent b3fefbb95aad2a9b5b8e44e6fea4860d6690368b zsh completion: fix error in qfinish completions from 88a82069be4a The actual flag is --applied, not --all. diff -r b3fefbb95aad -r a5a3af000e0d contrib/zsh_completion --- a/contrib/zsh_completion Sat Mar 31 14:05:10 2012 -0500 +++ b/contrib/zsh_completion Sat Mar 31 15:39:44 2012 -0500 @@ -882,7 +882,7 @@ _hg_cmd_qfinish() { _arguments -s -w : $_hg_global_opts \ - '(--all -a)'{-a,--all}'[finish all patches]' \ + '(--applied -a)'{-a,--applied}'[finish all applied patches]' \ '*:patch:_hg_qapplied' }