From d6fe1f907f495863c3ff6875f9d308e5d08ee0ff Mon Sep 17 00:00:00 2001 From: "Arnold D. Robbins" Date: Fri, 27 Jan 2017 11:18:56 +0200 Subject: Improve messge translatability in debug.c. Update copyright in interpret.h. --- debug.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'debug.c') diff --git a/debug.c b/debug.c index 6d40cac5..da8f2fa9 100644 --- a/debug.c +++ b/debug.c @@ -2960,9 +2960,9 @@ do_run(CMDARG *arg ATTRIBUTE_UNUSED, int cmd ATTRIBUTE_UNUSED) fatal_tag_valid = false; prog_running = false; - fprintf(out_fp, _("Program exited %s with exit value: %d\n"), - (! exiting && exit_val != EXIT_SUCCESS) ? "abnormally" - : "normally", + fprintf(out_fp, (! exiting && exit_val != EXIT_SUCCESS) + ? _("Program exited abnormally with exit value: %d\n") + : _("Program exited normally with exit value: %d\n"), exit_val); need_restart = true; return false; -- cgit v1.2.3