Re: svn commit: r306010 - head/share/man/man9

2016-09-20 Thread Conrad Meyer
On Tue, Sep 20, 2016 at 2:16 PM, Pedro Giffuni  wrote:
> s/alphebetially/alphabetically/ ?

This was fixed in r306027.

Best,
Conrad
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


Re: svn commit: r306010 - head/share/man/man9

2016-09-20 Thread Pedro Giffuni



On 19/09/2016 23:50, Warner Losh wrote:

Author: imp
Date: Tue Sep 20 04:50:53 2016
New Revision: 306010
URL: https://svnweb.freebsd.org/changeset/base/306010

Log:
   Document existing practice and be more clear about sys/foo.h files
   being alphabetical with sys/param.h or sys/types.h being first. Expand
   the example to hopefully make this (slightly) clearer.
   
   Noticed by: cem@


Modified:
   head/share/man/man9/style.9

Modified: head/share/man/man9/style.9
==
--- head/share/man/man9/style.9 Tue Sep 20 04:33:58 2016(r306009)
+++ head/share/man/man9/style.9 Tue Sep 20 04:50:53 2016(r306010)
@@ -118,17 +118,21 @@ Leave another blank line before the head
  .Pp
  Kernel include files (i.e.\&
  .Pa sys/*.h )
-come first; normally, include
+come first sorted alphebetially where possible.


s/alphebetially/alphabetically/ ?

...
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


Re: svn commit: r306010 - head/share/man/man9

2016-09-19 Thread Conrad Meyer
Thanks!

On Mon, Sep 19, 2016 at 9:50 PM, Warner Losh  wrote:
> Author: imp
> Date: Tue Sep 20 04:50:53 2016
> New Revision: 306010
> URL: https://svnweb.freebsd.org/changeset/base/306010
>
> Log:
>   Document existing practice and be more clear about sys/foo.h files
>   being alphabetical with sys/param.h or sys/types.h being first. Expand
>   the example to hopefully make this (slightly) clearer.
>
>   Noticed by: cem@
>
> Modified:
>   head/share/man/man9/style.9
>
> Modified: head/share/man/man9/style.9
> ==
> --- head/share/man/man9/style.9 Tue Sep 20 04:33:58 2016(r306009)
> +++ head/share/man/man9/style.9 Tue Sep 20 04:50:53 2016(r306010)
> @@ -118,17 +118,21 @@ Leave another blank line before the head
>  .Pp
>  Kernel include files (i.e.\&
>  .Pa sys/*.h )
> -come first; normally, include
> +come first sorted alphebetially where possible.
> +Include
>  .In sys/types.h
>  OR
>  .In sys/param.h ,
> -but not both.
> +but not both and include it first.
>  .In sys/types.h
>  includes
>  .In sys/cdefs.h ,
>  and it is okay to depend on that.
>  .Bd -literal
>  #include  /* Non-local includes in angle brackets. */
> +#include 
> +#include 
> +#include 
>  .Ed
>  .Pp
>  For a network program, put the network include files next.
>
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"