1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-02 10:01:11 +02:00

29650: Don't lose time info after a suspend+restore.

This commit is contained in:
Wayne Davison 2011-08-16 15:27:05 +00:00
parent 3ba487ca77
commit 2c9b4e769f
2 changed files with 8 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2011-08-16 Wayne Davison <wayned@users.sourceforge.net>
* 29650: Src/jobs.c: don't lose the the time info after a
suspend+restore.
2011-08-15 Peter Stephenson <p.w.stephenson@ntlworld.com>
* unposted: Src/Modules/datetime.c: use pm->node.nam to get
@ -15265,5 +15270,5 @@
*****************************************************
* This is used by the shell to define $ZSH_PATCHLEVEL
* $Revision: 1.5430 $
* $Revision: 1.5431 $
*****************************************************

View file

@ -953,6 +953,8 @@ printjob(Job jn, int lng, int synch)
if (skip_print) {
if (jn->stat & STAT_DONE) {
if (should_report_time(jn))
dumptime(jn);
deletejob(jn);
if (job == curjob) {
curjob = prevjob;