commit 7a9950a80d85b9aa47ca5e135cd0eb94fbaa474c from: Omar Polo via: Thomas Adam date: Fri Nov 18 16:43:09 2022 UTC regress: consistently use ed -s didn't know about -s when writing those tests; saves some output redirection. ok jamsek commit - efdeb378ed78ffcf23edeaae3f1bbbc0562293ef commit + 7a9950a80d85b9aa47ca5e135cd0eb94fbaa474c blob - a5f38f86a9c1e1366cdab61194d81fc23aa6163c blob + 020abd3a8da16edd2d75278716efc534d6c9325e --- regress/cmdline/histedit.sh +++ regress/cmdline/histedit.sh @@ -1930,7 +1930,7 @@ test_histedit_prepend_line() { got checkout $testroot/repo $testroot/wt > /dev/null - ed "$testroot/wt/alpha" </dev/null 2>&1 + ed -s "$testroot/wt/alpha" < $testroot/wt/numbers - ed $testroot/wt/numbers < /dev/null 2> /dev/null + ed -s "$testroot/wt/numbers" <