[BACK]Return to lex.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / mail

Diff for /src/usr.bin/mail/lex.c between version 1.15 and 1.16

version 1.15, 1997/11/14 00:23:48 version 1.16, 1998/05/04 05:37:49
Line 549 
Line 549 
 intr(s)  intr(s)
         int s;          int s;
 {  {
           sigset_t set, oset;
   
           (void)sigfillset(&set);
           (void)sigprocmask(SIG_BLOCK, &set, &oset);
         noreset = 0;          noreset = 0;
         if (!inithdr)          if (!inithdr)
                 sawcom++;                  sawcom++;
Line 565 
Line 568 
         }          }
         fputs("Interrupt\n", stderr);          fputs("Interrupt\n", stderr);
         reset(0);          reset(0);
           (void)sigprocmask(SIG_SETMASK, &oset, NULL);
 }  }
   
 /*  /*

Legend:
Removed from v.1.15  
changed lines
  Added in v.1.16