aboutsummaryrefslogtreecommitdiffhomepage
path: root/proc.c
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2006-01-05 23:54:11 +1000
committerGravatar axel <axel@liljencrantz.se>2006-01-05 23:54:11 +1000
commit6a0460f51e9e53d0c009dbfa5b74851d2f1c7095 (patch)
tree33c59960b5a90e384f90d2b70b8414b53e0ced74 /proc.c
parente12902fe3cff878371719ab7df490a5e98cfabc9 (diff)
Do not use \r sequence in translatable messages
darcs-hash:20060105135411-ac50b-f19d697f1b3f32cd695ee52282fc4281248e213f.gz
Diffstat (limited to 'proc.c')
-rw-r--r--proc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/proc.c b/proc.c
index 2aa61e71..a0486a89 100644
--- a/proc.c
+++ b/proc.c
@@ -478,7 +478,8 @@ void job_handle_signal ( int signal, siginfo_t *info, void *con )
*/
static void format_job_info( const job_t *j, const wchar_t *status )
{
- fwprintf (stdout, _( L"\rJob %d, \'%ls\' has %ls" ), j->job_id, j->command, status);
+ fwprintf (stdout, L"\r" );
+ fwprintf (stdout, _( L"Job %d, \'%ls\' has %ls" ), j->job_id, j->command, status);
fflush( stdout );
tputs(clr_eol,1,&writeb);
fwprintf (stdout, L"\n" );