mirror of
https://github.com/Mercury-Language/mercury.git
synced 2025-12-10 19:33:11 +00:00
Add missing newline to end an error message.
This commit is contained in:
@@ -711,11 +711,13 @@ do_portray(Debugger, CallerType, MaybeMaybeOptionTable, Info, MaybePath,
|
||||
MaybePath, !IO)
|
||||
;
|
||||
FormatResult = error(Msg),
|
||||
write_string_debugger(Debugger, Msg, !IO)
|
||||
write_string_debugger(Debugger, Msg, !IO),
|
||||
write_string_debugger(Debugger, "\n", !IO)
|
||||
)
|
||||
;
|
||||
MaybeOptionTable = error(Msg),
|
||||
write_string_debugger(Debugger, Msg, !IO)
|
||||
write_string_debugger(Debugger, Msg, !IO),
|
||||
write_string_debugger(Debugger, "\n", !IO)
|
||||
)
|
||||
).
|
||||
|
||||
|
||||
Reference in New Issue
Block a user