- _iwfconfig() typo fix by Guillaume Rousse <rousse@ccr.jussieu.fr>

This commit is contained in:
ianmacd 2003-07-13 01:37:07 +00:00
parent f9e8e2c887
commit 3835bbeeb0

View File

@ -1,6 +1,6 @@
# bash_completion - some programmable completion functions for bash 2.05b
#
# $Id: bash_completion,v 1.588 2003/07/11 09:22:55 ianmacd Exp $
# $Id: bash_completion,v 1.589 2003/07/13 03:37:07 ianmacd Exp $
#
# Copyright (C) Ian Macdonald <ian@caliban.org>
#
@ -240,7 +240,7 @@ _ifwconfig()
esac
COMPREPLY=( $( eval "$@" 2>/dev/null | \
sed -ne
sed -ne \
's|^\('$cur'[^[:space:][:punct:]]\{1,\}\).*$|\1|p') )
}