mirror of
https://github.com/Mercury-Language/mercury.git
synced 2025-12-16 14:25:56 +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)
|
MaybePath, !IO)
|
||||||
;
|
;
|
||||||
FormatResult = error(Msg),
|
FormatResult = error(Msg),
|
||||||
write_string_debugger(Debugger, Msg, !IO)
|
write_string_debugger(Debugger, Msg, !IO),
|
||||||
|
write_string_debugger(Debugger, "\n", !IO)
|
||||||
)
|
)
|
||||||
;
|
;
|
||||||
MaybeOptionTable = error(Msg),
|
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