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

Diff for /src/usr.bin/rcs/co.c between version 1.122 and 1.123

version 1.122, 2015/10/21 16:06:57 version 1.123, 2017/08/29 16:47:33
Line 511 
Line 511 
         if (!(flags & CO_STATE))          if (!(flags & CO_STATE))
                 state = NULL;                  state = NULL;
   
         warnx("%s: No revision on branch has%s%s%s%s%s%s.",          warnx("%s: No revision on branch has %s%s%s%s%s%s%s%s.",
             file->rf_path,              file->rf_path,
             date ? " a date before " : "",              date ? "a date before " : "",
             date ? date : "",              date ? date : "",
             author ? " and author " + (date ? 0:4) : "",              (date && author) ? " and " : "",
               author ? "author " : "",
             author ? author : "",              author ? author : "",
             state  ? " and state " + (date || author ? 0:4) : "",              ((date || author) && state) ? " and " : "",
             state  ? state : "");              state ? "state " : "",
               state ? state : "");
   
 }  }
   
 /*  /*

Legend:
Removed from v.1.122  
changed lines
  Added in v.1.123