Skip to content

Commit 85fb9b6

Browse files
committed
FIX: shortening ANSI escape code used in error messages
1 parent 05dc850 commit 85fb9b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/s-mold.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1046,7 +1046,7 @@ STOID Mold_Error(REBVAL *value, REB_MOLD *mold, REBFLG molded)
10461046
err = VAL_ERR_VALUES(value);
10471047

10481048
// Form: ** <type> Error:
1049-
Emit(mold, "\x1B[1;35;49m** WB", &err->type, RS_ERRS+0);
1049+
Emit(mold, "\x1B[1;35m** WB", &err->type, RS_ERRS+0);
10501050

10511051
// Append: error message ARG1, ARG2, etc.
10521052
msg = Find_Error_Info(err, 0);

0 commit comments

Comments
 (0)