From f61b6a9349c0a5008071991b85b105251b09128b Mon Sep 17 00:00:00 2001 From: Oldes Date: Tue, 7 Nov 2017 16:54:25 +0100 Subject: [PATCH] FEAT: errors printed in purple color --- src/core/s-mold.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/s-mold.c b/src/core/s-mold.c index 20e3744285..5c0a84b8e1 100644 --- a/src/core/s-mold.c +++ b/src/core/s-mold.c @@ -957,7 +957,7 @@ STOID Mold_Error(REBVAL *value, REB_MOLD *mold, REBFLG molded) err = VAL_ERR_VALUES(value); // Form: ** Error: - Emit(mold, "** WB", &err->type, RS_ERRS+0); + Emit(mold, "\x1B[1;35;49m** WB", &err->type, RS_ERRS+0); // Append: error message ARG1, ARG2, etc. msg = Find_Error_Info(err, 0);