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

Diff for /src/usr.bin/awk/run.c between version 1.49 and 1.50

version 1.49, 2020/06/10 21:01:32 version 1.50, 2020/06/10 21:02:19
Line 515 
Line 515 
         int nsub;          int nsub;
   
         x = execute(a[0]);      /* Cell* for symbol table */          x = execute(a[0]);      /* Cell* for symbol table */
           if (x == symtabloc) {
                   FATAL("cannot delete SYMTAB or its elements");
           }
         if (!isarr(x))          if (!isarr(x))
                 return True;                  return True;
         if (a[1] == 0) {        /* delete the elements, not the table */          if (a[1] == 0) {        /* delete the elements, not the table */

Legend:
Removed from v.1.49  
changed lines
  Added in v.1.50