aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-03-21 21:24:11 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-03-21 21:24:11 -0400
commiteaa0fe42668a78592f6a36de9a7889dcde41695e (patch)
tree35cea6c33830ca22cceeaec1686274f718f751ee
parentefe52e54053985f5632ef984238eb683110e0859 (diff)
Change doctest '=' to yellow bold
-rw-r--r--stdlib/stdlib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/stdlib.c b/stdlib/stdlib.c
index d09488d0..819414fa 100644
--- a/stdlib/stdlib.c
+++ b/stdlib/stdlib.c
@@ -597,7 +597,7 @@ public void end_inspect(const void *expr, const TypeInfo_t *type)
Text_t type_name = generic_as_text(NULL, false, type);
for (int i = 0; i < 3*_inspect_depth; i++) fputc(' ', stderr);
- fprintf(stderr, USE_COLOR ? "\x1b[2m=\x1b[0m %k \x1b[2m: \x1b[36m%k\x1b[m\n" : "= %k : %k\n", &expr_text, &type_name);
+ fprintf(stderr, USE_COLOR ? "\x1b[33;1m=\x1b[0m %k \x1b[2m: \x1b[36m%k\x1b[m\n" : "= %k : %k\n", &expr_text, &type_name);
}
}