From: Ian Jackson Date: Sun, 8 Jul 2018 22:57:01 +0000 (+0100) Subject: git-debrebase: Set $| X-Git-Tag: archive/debian/5.9~10 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=dgit.git;a=commitdiff_plain;h=bcc6b2b9ee152cbb679642117ee191a383d359b0;ds=sidebyside git-debrebase: Set $| This will avoid pepeering everything with calls to flush. Without it some messages from ffq_check, say, can arrive after the stderr output from a subsequent snags_maybe_bail, which is quite confusing. Signed-off-by: Ian Jackson --- diff --git a/git-debrebase b/git-debrebase index f1ae0533..fb6b79d9 100755 --- a/git-debrebase +++ b/git-debrebase @@ -41,6 +41,8 @@ our ($opt_defaultcmd_interactive); our $us = qw(git-debrebase); +$|=1; + sub badusage ($) { my ($m) = @_; print STDERR "bad usage: $m\n";