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

Diff for /src/usr.bin/awk/b.c between version 1.19 and 1.20

version 1.19, 2017/10/09 14:51:31 version 1.20, 2018/01/24 16:28:25
Line 260 
Line 260 
   
         if ((c = *p++) == 't')          if ((c = *p++) == 't')
                 c = '\t';                  c = '\t';
           else if (c == 'v')
                   c = '\v';
         else if (c == 'n')          else if (c == 'n')
                 c = '\n';                  c = '\n';
         else if (c == 'f')          else if (c == 'f')
Line 268 
Line 270 
                 c = '\r';                  c = '\r';
         else if (c == 'b')          else if (c == 'b')
                 c = '\b';                  c = '\b';
           else if (c == 'a')
                   c = '\007';
         else if (c == '\\')          else if (c == '\\')
                 c = '\\';                  c = '\\';
         else if (c == 'x') {    /* hexadecimal goo follows */          else if (c == 'x') {    /* hexadecimal goo follows */

Legend:
Removed from v.1.19  
changed lines
  Added in v.1.20