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

Diff for /src/usr.bin/fmt/fmt.c between version 1.16 and 1.17

version 1.16, 2000/06/25 15:35:42 version 1.17, 2001/07/12 05:17:05
Line 562 
Line 562 
     if (indent>0) output_indent(indent);      if (indent>0) output_indent(indent);
     fwrite(output_buffer, 1, x0, stdout);      fwrite(output_buffer, 1, x0, stdout);
     if (x0==0 || (new_x <= max_length && new_x-goal_length <= goal_length-x)) {      if (x0==0 || (new_x <= max_length && new_x-goal_length <= goal_length-x)) {
       printf("%*s", pending_spaces, "");        printf("%*s", (int)pending_spaces, "");
       goto write_out_word;        goto write_out_word;
     }      }
     else {      else {

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