Skip to content

Commit

Permalink
FIX: make sure that error message always starts on a new line
Browse files Browse the repository at this point in the history
  • Loading branch information
Oldes committed Jan 20, 2022
1 parent c41c33d commit 13da594
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/s-mold.c
Original file line number Diff line number Diff line change
Expand Up @@ -1053,7 +1053,7 @@ STOID Mold_Error(REBVAL *value, REB_MOLD *mold, REBFLG molded)
err = VAL_ERR_VALUES(value);

// Form: ** <type> Error:
Emit(mold, "** WB", &err->type, RS_ERRS+0);
Emit(mold, "\n** WB", &err->type, RS_ERRS+0);

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

0 comments on commit 13da594

Please sign in to comment.