improve wording of error message

Zanchey proposed this improved wording in feedback to PR #3658.
This commit is contained in:
Kurtis Rader 2017-01-05 12:09:29 -08:00
parent 1f836f72b3
commit f0515d0caa

View file

@ -2244,8 +2244,8 @@ static void handle_end_loop() {
}
if (!data->prev_end_loop && bg_jobs) {
fputws(_(L"There are stopped or running jobs.\n"), stdout);
fputws(_(L"A second attempt to exit will force their termination.\n"), stdout);
fputws(_(L"There are still jobs active (use the jobs command to see them).\n"), stdout);
fputws(_(L"A second attempt to exit will terminate them.\n"), stdout);
reader_exit(0, 0);
data->prev_end_loop = 1;
return;