Date: Wed, 25 Aug 1999 00:00:04 -0700 (PDT) From: Sheldon Hearn <sheldonh@uunet.co.za> To: freebsd-bugs@FreeBSD.org Subject: Re: bin/13363: Patch to env(1) for Unix 98 compatability Message-ID: <199908250700.AAA07170@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
The following reply was made to PR bin/13363; it has been noted by GNATS. From: Sheldon Hearn <sheldonh@uunet.co.za> To: howardjp@wam.umd.edu Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: bin/13363: Patch to env(1) for Unix 98 compatability Date: Wed, 25 Aug 1999 08:53:36 +0200 On Tue, 24 Aug 1999 22:42:09 -0400, James Howard wrote: > ! while ((ch = getopt(argc, argv, "i-")) != -1) > switch(ch) { > + case 'i': > + /* > + * For Unix 98 compatability. > + */ > + /* FALLTHROUGH */ Hi James/Jamie (which do you prefer?), Bill Fumerola replied telling you that style(9) requires a slightly different format for your comments. While it's true, the example he gave you doesn't appear in style(9). I'd do this: case 'i': /* Unix 98 compatibility option */ /* FALLTHROUGH */ Personally, I wouldn't provide the comment at all. Focus on the manpage instead. :-P Oh, and note the spelling of compatibility. :-) later, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199908250700.AAA07170>