summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2018-07-12 11:04:00 +0200
committerDaniel Stenberg <daniel@haxx.se>2018-07-12 12:07:14 +0200
commit48ba5ea4618a88ce9b3a4dbb51a0d8311936d308 (patch)
tree661fa73a45ad47d5d9c64ec1b4aa4386cc3f7797
parentacefdd0cd17443dae59921ae9f1245385e5ad4d0 (diff)
downloadcurl-bagder/unbold-fix.tar.gz
header output: switch off all styles, not just unboldbagder/unbold-fix
... the "unbold" sequence doesn't work on the mac Terminal. Reported-by: Zero King Fixes #2736 Closes #2738
-rw-r--r--src/tool_cb_hdr.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/tool_cb_hdr.c b/src/tool_cb_hdr.c
index 88ce5e13b..6419b7204 100644
--- a/src/tool_cb_hdr.c
+++ b/src/tool_cb_hdr.c
@@ -42,7 +42,10 @@ static char *parse_filename(const char *ptr, size_t len);
#define BOLDOFF
#else
#define BOLD "\x1b[1m"
-#define BOLDOFF "\x1b[21m"
+/* Switch off bold by settting "all attributes off" since the explicit
+ bold-off code (21) isn't supported everywhere - like in the mac
+ Terminal. */
+#define BOLDOFF "\x1b[0m"
#endif
/*