[BACK]Return to jobs.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / bin / sh

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/bin/sh/jobs.c between version 1.97 and 1.98

version 1.97, 2017/12/30 20:42:28 version 1.98, 2017/12/30 23:24:19
Line 465  showjob(struct output *out, struct job *
Line 465  showjob(struct output *out, struct job *
                         fmtstr(s, 16, "[%ld] %c ",                          fmtstr(s, 16, "[%ld] %c ",
                                 (long)(jp - jobtab + 1),                                  (long)(jp - jobtab + 1),
 #if JOBS  #if JOBS
                                 jp == jobtab + curjob ? '+' :                                  jp - jobtab == curjob ?
                                 curjob != -1 && jp == jobtab +                                                                            '+' :
                                             jobtab[curjob].prev_job ? '-' :                                  curjob != -1 &&
                                       jp - jobtab == jobtab[curjob].prev_job ?
                                                                             '-' :
 #endif  #endif
                                 ' ');                                  ' ');
                 else                  else

Legend:
Removed from v.1.97  
changed lines
  Added in v.1.98

CVSweb <webmaster@jp.NetBSD.org>