Commit e310eac5 e310eac5f53df1cfde0165ce71c745e55d5a9f4c by Sergey Poznyakoff

Restore extra quoting in test mhn-store-pipe of mh/tests/mhn.at

Extra quoting is necessary because the argument includes unbalanced
parentheses.  It was first implemented in commit 1b5098c9 on 2011-05-05,
but was accidentally removed in commit 1e33c774 on 2011-10-16.
1 parent eee22f41
...@@ -260,7 +260,9 @@ MUT_MBCHMOD(Mail/inbox, 700) ...@@ -260,7 +260,9 @@ MUT_MBCHMOD(Mail/inbox, 700)
260 260
261 echo "Current-Folder: inbox" > Mail/context 261 echo "Current-Folder: inbox" > Mail/context
262 echo "mhn-store-text: | $abs_top_srcdir/mh/tests/mhed -" >> $MH 262 echo "mhn-store-text: | $abs_top_srcdir/mh/tests/mhed -" >> $MH
263 mhn +inbox -store -part 1 4 | sed "s|$abs_top_srcdir/mh/tests/||;s|(cd \(.*\)\;|(cd home\;|;s| *$||" || exit $? 263 dnl ! Note extra quoting in the sed argument below, necessary because of
264 dnl ! unbalanced parentheses.
265 mhn +inbox -store -part 1 4 | sed ["s|$abs_top_srcdir/mh/tests/||;s|(cd \(.*\)\;|(cd home\;|;s| *$||"] || exit $?
264 ], 266 ],
265 [0], 267 [0],
266 [-- Editor invocation: - 268 [-- Editor invocation: -
......