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

Diff for /src/usr.bin/cvs/diff_internals.c between version 1.30 and 1.31

version 1.30, 2010/07/15 18:23:50 version 1.31, 2010/07/16 17:53:20
Line 1278 
Line 1278 
         diff_output("***************");          diff_output("***************");
         if ((flags & D_PROTOTYPE)) {          if ((flags & D_PROTOTYPE)) {
                 f = match_function(ixold, lowa-1, f1);                  f = match_function(ixold, lowa-1, f1);
                 if (f != NULL) {                  if (f != NULL)
                         diff_output(" ");                          diff_output(" %s", f);
                         diff_output("%s", f);  
                 }  
         }          }
         diff_output("\n*** ");          diff_output("\n*** ");
         range(lowa, upb, ",");          range(lowa, upb, ",");
Line 1387 
Line 1385 
         diff_output(" @@");          diff_output(" @@");
         if ((flags & D_PROTOTYPE)) {          if ((flags & D_PROTOTYPE)) {
                 f = match_function(ixold, lowa-1, f1);                  f = match_function(ixold, lowa-1, f1);
                 if (f != NULL) {                  if (f != NULL)
                         diff_output(" ");                          diff_output(" %s", f);
                         diff_output("%s", f);  
                 }  
         }          }
         diff_output("\n");          diff_output("\n");
   

Legend:
Removed from v.1.30  
changed lines
  Added in v.1.31