From eaa0fe42668a78592f6a36de9a7889dcde41695e Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Fri, 21 Mar 2025 21:24:11 -0400 Subject: [PATCH] Change doctest '=' to yellow bold --- stdlib/stdlib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/stdlib.c b/stdlib/stdlib.c index d09488d..819414f 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); } }