mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-14 14:03:58 +00:00
Don't print error message in fg if the command didn't fail
darcs-hash:20060118164750-ac50b-af59573292b32b87d0257c501eb7989062503653.gz
This commit is contained in:
parent
efd01ae6c6
commit
13e94c0617
1 changed files with 8 additions and 6 deletions
12
builtin.c
12
builtin.c
|
@ -2325,10 +2325,13 @@ static int builtin_fg( wchar_t **argv )
|
|||
*/
|
||||
for( j=first_job; ((j!=0) && (!j->constructed)); j=j->next )
|
||||
;
|
||||
sb_printf( sb_err,
|
||||
_( L"%ls: There are no jobs\n" ),
|
||||
argv[0] );
|
||||
builtin_print_help( argv[0], sb_err );
|
||||
if( !j )
|
||||
{
|
||||
sb_printf( sb_err,
|
||||
_( L"%ls: There are no jobs\n" ),
|
||||
argv[0] );
|
||||
builtin_print_help( argv[0], sb_err );
|
||||
}
|
||||
}
|
||||
else if( argv[2] != 0 )
|
||||
{
|
||||
|
@ -2400,7 +2403,6 @@ static int builtin_fg( wchar_t **argv )
|
|||
make_first( j );
|
||||
j->fg=1;
|
||||
|
||||
|
||||
job_continue( j, job_is_stopped(j) );
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue