Add new line after printing job information with jobs builtin.

This commit is contained in:
Siteshwar Vashisht 2012-06-07 21:07:34 +05:30
parent 23ce927301
commit 8167e1e07e

View file

@ -99,7 +99,7 @@ static void builtin_jobs_print( const job_t *j, int mode, int header )
stdout_buffer.append(job_is_stopped(j)?_(L"stopped"):_(L"running"));
stdout_buffer.append(L"\t");
stdout_buffer.append(j->command_wcstr());
stdout_buffer.append(L"\t");
stdout_buffer.append(L"\n");
break;
}