On Thu, Jun 21, 2018 at 4:05 PM Junio C Hamano <gitster@xxxxxxxxx> wrote: > Elijah Newren <newren@xxxxxxxxx> writes: > > + # This is indented with HT SP HT. > > + echo " foo();" >>foo && > > I often wonder, whenever I see a need for a comment like this, if > saying the same thing in code to make it visible is cleaner and less > error prone way to do so, i.e. e.g. > > echo "_ _foo();" | tr "_" "\011" >>foo && Or use q_to_tab() from test-lib-functions.h: echo "q qfoo();" | q_to_tab