chiark / gitweb /
bash-completion: use a better definition of __contains_word
[elogind.git] / shell-completion / bash / localectl
index ef19f01461ced6321fc0aa558cf9c9ca13624060..bec9e78c64b1a531a6303f2a0ec566dfe0205107 100644 (file)
 # along with systemd; If not, see <http://www.gnu.org/licenses/>.
 
 __contains_word () {
-        local word=$1; shift
-        for w in $*; do [[ $w = $word ]] && return 0; done
-        return 1
+        local w word=$1; shift
+        for w in "$@"; do
+                [[ $w = "$word" ]] && return
+        done
 }
 
 _localectl() {