X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=x2p%2Fwalk.c;h=e745510b1d3df2b55ecc572279a06edcf00e4b27;hb=a559c25918b1466cdb50c9f978a86f01be0bac10;hp=04d133b9c4fa0a7f171b0a05b120f1b34cb95674;hpb=a1cc2bdc08f9aa1504f32e5b0b782c2b3cffd124;p=p5sagit%2Fp5-mst-13.2.git diff --git a/x2p/walk.c b/x2p/walk.c index 04d133b..e745510 100644 --- a/x2p/walk.c +++ b/x2p/walk.c @@ -1,6 +1,9 @@ -/* $Header: walk.c,v 1.0 87/12/18 13:07:40 root Exp $ +/* $Header: walk.c,v 1.0.1.1 88/01/28 11:07:56 root Exp $ * * $Log: walk.c,v $ + * Revision 1.0.1.1 88/01/28 11:07:56 root + * patch8: changed some misleading comments. + * * Revision 1.0 87/12/18 13:07:40 root * Initial revision * @@ -68,13 +71,13 @@ int *numericptr; str_cat(str,"';\t\t# field separator from -F switch\n"); } else if (saw_FS && !const_FS) { - str_cat(str,"$FS = '[ \\t\\n]+';\t\t# default field separator\n"); + str_cat(str,"$FS = '[ \\t\\n]+';\t\t# set field separator\n"); } if (saw_OFS) { - str_cat(str,"$, = ' ';\t\t# default output field separator\n"); + str_cat(str,"$, = ' ';\t\t# set output field separator\n"); } if (saw_ORS) { - str_cat(str,"$\\ = \"\\n\";\t\t# default output record separator\n"); + str_cat(str,"$\\ = \"\\n\";\t\t# set output record separator\n"); } if (str->str_cur > 20) str_cat(str,"\n");