mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-01-18 21:22:44 +08:00
Minor fixes
darcs-hash:20051008022706-ac50b-e7726d32381d37e64351cb29d3bd80953ef9ff11.gz
This commit is contained in:
parent
c7b1381674
commit
f23fa4827a
4
parser.c
4
parser.c
|
@ -75,7 +75,7 @@ The fish parser. Contains functions for parsing code.
|
|||
/**
|
||||
Error message used when the end of a block can't be located
|
||||
*/
|
||||
#define BLOCK_END_ERR_MSG L"Could not locate end of block. The 'end' command may be missing or misspelled."
|
||||
#define BLOCK_END_ERR_MSG L"Could not locate end of block. The 'end' command is missing, misspelled or a preceeding ';' is missing."
|
||||
|
||||
/**
|
||||
Error message on reaching maximum number of block calls
|
||||
|
@ -1822,7 +1822,7 @@ static void eval_job( tokenizer *tok )
|
|||
}
|
||||
}
|
||||
|
||||
if(( is_subshell || is_block || !is_interactive) /*&& (!is_event)*/)
|
||||
if(( is_subshell || is_block || !is_interactive) && (!is_event))
|
||||
job_do_notification();
|
||||
// debug( 2, L"end eval_job()\n" );
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user