Removed unused commented out code and fixed some indentation

This commit is contained in:
ridiculousfish
2012-11-04 15:47:55 -08:00
parent 5e371e8fe7
commit 8c24d49c73
2 changed files with 5 additions and 6 deletions

View File

@@ -1168,11 +1168,11 @@ void job_continue (job_t *j, int cont)
if( job_is_completed( j ))
{
// It's possible that the job will produce output and exit before we've even read from it.
// We'll eventually read the output, but it may be after we've executed subsequent calls
// This is why my prompt colors kept getting screwed up - the builtin echo calls
// were sometimes having their output combined with the set_color calls in the wrong order!
read_try(j);
// It's possible that the job will produce output and exit before we've even read from it.
// We'll eventually read the output, but it may be after we've executed subsequent calls
// This is why my prompt colors kept getting screwed up - the builtin echo calls
// were sometimes having their output combined with the set_color calls in the wrong order!
read_try(j);
process_t *p = j->first_process;