summaryrefslogtreecommitdiff
path: root/completions/wvdial
diff options
context:
space:
mode:
Diffstat (limited to 'completions/wvdial')
-rw-r--r--completions/wvdial4
1 files changed, 2 insertions, 2 deletions
diff --git a/completions/wvdial b/completions/wvdial
index e456f1b1..e0316617 100644
--- a/completions/wvdial
+++ b/completions/wvdial
@@ -18,7 +18,7 @@ _wvdial()
case $cur in
-*)
- COMPREPLY=( $( compgen -W '$( _parse_help "$1" )' -- "$cur" ) )
+ COMPREPLY=( $(compgen -W '$(_parse_help "$1")' -- "$cur") )
[[ $COMPREPLY == *= ]] && compopt -o nospace
;;
*)
@@ -33,7 +33,7 @@ _wvdial()
done
# parse config files for sections and
# remove default section
- COMPREPLY=( $( command sed -ne "s|^\[Dialer \($cur.*\)\]$|\1|p" $config \
+ COMPREPLY=( $(command sed -ne "s|^\[Dialer \($cur.*\)\]$|\1|p" $config \
2>/dev/null | command grep -v '^Defaults$'))
# escape spaces
COMPREPLY=${COMPREPLY// /\\ }