aboutsummaryrefslogtreecommitdiff
path: root/bp.c
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2021-09-04 14:09:20 -0700
committerBruce Hill <bruce@bruce-hill.com>2021-09-04 14:09:20 -0700
commit58fef531ebf01b1c12589e4e50c712d351d9bfaa (patch)
tree473152acdff31e9eb7652d6ecdc0d7836d61e0dc /bp.c
parent900466c48380ae3c2ba6f29c75c8423c3751abea (diff)
Changed non-tty output to BARE instead of PLAIN
Diffstat (limited to 'bp.c')
-rw-r--r--bp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bp.c b/bp.c
index 28aa913..b4727cd 100644
--- a/bp.c
+++ b/bp.c
@@ -521,7 +521,7 @@ int main(int argc, char *argv[])
if (options.context_after == USE_DEFAULT_CONTEXT) options.context_after = 0;
if (options.format == FORMAT_AUTO)
- options.format = isatty(STDOUT_FILENO) ? FORMAT_FANCY : FORMAT_PLAIN;
+ options.format = isatty(STDOUT_FILENO) ? FORMAT_FANCY : FORMAT_BARE;
// If any of these signals triggers, and there is a temporary file in use,
// be sure to clean it up before exiting.