FIX: Correct quoting for negative -TERM filtering.

This oversight was recently introduced with the new filtercommand() in a0f39480bf.
I've enhanced the test to cover -TERM filtering, too.
This commit is contained in:
Ingo Karkat
2011-12-03 16:55:13 +01:00
parent 417e86ae7a
commit ea0e7c7b25
2 changed files with 24 additions and 1 deletions

View File

@@ -688,7 +688,7 @@ filtercommand()
## $search_term
#
## Remove the first character (-) before adding to our filter command
filter="${filter:-}${filter:+ | }grep -v -i '$(shellquote "${search_term:1}")'"
filter="${filter:-}${filter:+ | }grep -v -i $(shellquote "${search_term:1}")"
fi
done