mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-12 21:18:53 +00:00
Add new line after printing job information with jobs builtin.
This commit is contained in:
parent
23ce927301
commit
8167e1e07e
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue