# HG changeset patch # User "Yann E. MORIN" # Date 1338310333 -7200 # Node ID 3932bbf1fec246767edb88d63f144a7859dd444a # Parent 56e4a47dcf8806e67786ae635a3c11723f70c3b8 completion: fix function name Signed-off-by: "Yann E. MORIN" (transplanted from a57b8a45ea26c16a8ed38c7f6378cf0cedf408fd) diff -r 56e4a47dcf88 -r 3932bbf1fec2 ct-ng.comp --- a/ct-ng.comp Wed May 09 18:17:17 2012 +0200 +++ b/ct-ng.comp Tue May 29 18:52:13 2012 +0200 @@ -1,6 +1,6 @@ # To be sourced -_ct-ng () { +_ct_ng () { local cur prev samples show_samples actions steps start_steps stop_steps ct_ng_opts vars COMPREPLY=() cur=$(_get_cword) @@ -30,4 +30,4 @@ COMPREPLY=($(compgen -W "${ct_ng_opts}" -- "${cur}")) return 0 } -complete -F _ct-ng ct-ng +complete -F _ct_ng ct-ng