diff options
author | Yann E. MORIN" <yann.morin.1998@free.fr> | 2012-05-29 18:52:13 +0200 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@free.fr> | 2012-05-29 18:52:13 +0200 |
commit | d25ef222d9d7a9265b3751f38ffd613fd3ef9435 (patch) | |
tree | 4598f2123ffc4a0185e34c4ea78463c55dd48d70 | |
parent | 67765a34f77e95af1158d80067f0af0d257fc461 (diff) | |
download | crosstool-ng-d25ef222d9d7a9265b3751f38ffd613fd3ef9435.tar.gz crosstool-ng-d25ef222d9d7a9265b3751f38ffd613fd3ef9435.tar.bz2 crosstool-ng-d25ef222d9d7a9265b3751f38ffd613fd3ef9435.zip |
completion: fix function name
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
(transplanted from a57b8a45ea26c16a8ed38c7f6378cf0cedf408fd)
-rw-r--r-- | ct-ng.comp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 @@ _ct-ng () { COMPREPLY=($(compgen -W "${ct_ng_opts}" -- "${cur}")) return 0 } -complete -F _ct-ng ct-ng +complete -F _ct_ng ct-ng |