run-command: prettify the `RUN_COMMAND_*` flags
commit3322a9d87f3b2121d2c62096f9261c8934c74056
authorJohannes Schindelin <johannes.schindelin@gmx.de>
Thu, 9 Sep 2021 09:47:05 +0000 (9 09:47 +0000)
committerJunio C Hamano <gitster@pobox.com>
Thu, 9 Sep 2021 19:56:11 +0000 (9 12:56 -0700)
tree25f89bc60a594e13a680bb9ccc290fe877e16827
parent7e44ff7a3983ad0c7be5c9edcfea2e8355ce9a65
run-command: prettify the `RUN_COMMAND_*` flags

The values were listed unaligned, and with powers of two spelled out in
decimal. The list is easier to parse for human readers if the numbers
are aligned and spelled out as powers of two (using the bit-shift
operator `<<`).

While at it, remove a code comment that was unclear at best, and
confusing at worst.

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
run-command.h