sed: fix nested {} case

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko
2010-04-20 04:00:03 -04:00
parent 96a1833231
commit f2c16edf99
2 changed files with 14 additions and 1 deletions

View File

@ -253,4 +253,9 @@ testing "sed c" \
"repl\nrepl\n" "" \
"first\nsecond\n"
testing "sed nested {}s" \
"sed '/asd/ { p; /s/ { s/s/c/ }; p; q }'" \
"qwe\nasd\nacd\nacd\n" "" \
"qwe\nasd\nzxc\n"
exit $FAILCOUNT