[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.24 and 1.25

version 1.24, 2006/11/29 20:09:27 version 1.25, 2006/11/29 21:59:04
Line 711 
Line 711 
         extern char *__progname;          extern char *__progname;
   
         fprintf(stderr,          fprintf(stderr,
                 "Usage:   %s [-cmnps] [-d chars] [-l number] [-t number]\n"                  "usage: %s [-cmnps] [-d chars] [-l number] [-t number]\n"
                 "             [goal [maximum] | -width | -w width] [file ...]\n"                  "\t[goal [maximum] | -width | -w width] [file ...]\n",
                 "Options: -c     center each line instead of formatting\n"                          __progname);
                 "         -d <chars> double-space after <chars> at line end\n"  
                 "         -l <n> turn each <n> spaces at start of line into a tab\n"  
                 "         -m     try to make sure mail header lines stay separate\n"  
                 "         -n     format lines beginning with a dot\n"  
                 "         -p     allow indented paragraphs\n"  
                 "         -s     coalesce whitespace inside lines\n"  
                 "         -t <n> have tabs every <n> columns\n"  
                 "         -w <n> set maximum width to <n>\n"  
                 "         goal   set target width to goal\n", __progname);  
         exit (1);          exit (1);
 }  }

Legend:
Removed from v.1.24  
changed lines
  Added in v.1.25