From 9fb47cff9d394dc111aeae79a6c99723b1465249 Mon Sep 17 00:00:00 2001 From: Peter Stephenson Date: Tue, 27 Mar 2007 10:56:53 +0000 Subject: 23238: jobs didn't get deleted if they weren't printed --- Src/jobs.c | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) (limited to 'Src/jobs.c') diff --git a/Src/jobs.c b/Src/jobs.c index 38666ef55..c201ecd96 100644 --- a/Src/jobs.c +++ b/Src/jobs.c @@ -806,7 +806,10 @@ should_report_time(Job j) * synch = 2 means called synchronously from jobs * * Returns 1 if some output was done. -*/ + * + * The function also deletes the job if it was done, even it + * is not printed. + */ /**/ int @@ -818,8 +821,18 @@ printjob(Job jn, int lng, int synch) int doneprint = 0; FILE *fout = (synch == 2) ? stdout : shout; - if (jn->stat & STAT_NOPRINT) + if (jn->stat & STAT_NOPRINT) { + if (jn->stat & STAT_DONE) { + deletejob(jn); + if (job == curjob) { + curjob = prevjob; + prevjob = job; + } + if (job == prevjob) + setprevjob(); + } return 0; + } /* * Wow, what a hack. Did I really write this? --- pws -- cgit 1.4.1