mirror of
git://git.sv.gnu.org/autoconf
synced 2025-03-19 14:40:24 +08:00
(Some of these changes were not made by devnull, but devnull is
unwedging rcs.) Changed gnu@prep.ai.mit.edu to gnu@gnu.org Some #ifdef and #ifndef examples added. A grammer error was fixed.
This commit is contained in:
parent
ba335d297b
commit
66403d375a
@ -3,7 +3,7 @@
|
||||
@setfilename standards.info
|
||||
@settitle GNU Coding Standards
|
||||
@c UPDATE THIS DATE WHENEVER YOU MAKE CHANGES!
|
||||
@set lastupdate 04 July 1997
|
||||
@set lastupdate 18 February 1998
|
||||
@c %**end of header
|
||||
|
||||
@ifinfo
|
||||
@ -105,7 +105,7 @@ even if you write in another programming language. The rules often
|
||||
state reasons for writing in a certain way.
|
||||
|
||||
Corrections or suggestions for this document should be sent to
|
||||
@code{gnu@@prep.ai.mit.edu}. If you make a suggestion, please include a
|
||||
@code{gnu@@gnu.org}. If you make a suggestion, please include a
|
||||
suggested new wording for it; our time is limited. We prefer a context
|
||||
diff to the @file{standards.texi} or @file{make-stds.texi} files, but if
|
||||
you don't have those files, please mail your suggestion anyway.
|
||||
@ -678,7 +678,7 @@ Report bugs to @var{mailing-address}.
|
||||
Here is a table of long options used by GNU programs. It is surely
|
||||
incomplete, but we aim to list all the options that a new program might
|
||||
want to be compatible with. If you use names not already in the table,
|
||||
please send @samp{gnu@@prep.ai.mit.edu} a list of them, with their
|
||||
please send @samp{gnu@@gnu.org} a list of them, with their
|
||||
meanings, so we can update the table.
|
||||
|
||||
@c Please leave newlines between items in this table; it's much easier
|
||||
@ -1173,7 +1173,7 @@ Used in @code{su}.
|
||||
@item machine
|
||||
No listing of which programs already use this;
|
||||
someone should check to
|
||||
see if any actually do and tell @code{gnu@@prep.ai.mit.edu}.
|
||||
see if any actually do and tell @code{gnu@@gnu.org}.
|
||||
|
||||
@item macro-name
|
||||
@samp{-M} in @code{ptx}.
|
||||
@ -1976,6 +1976,11 @@ its sense}. @samp{#else} should have a comment describing the condition
|
||||
@dots{}
|
||||
#endif /* not foo */
|
||||
@end group
|
||||
@group
|
||||
#ifdef foo
|
||||
@dots{}
|
||||
#endif /* foo */
|
||||
@end group
|
||||
@end example
|
||||
|
||||
@noindent
|
||||
@ -1989,9 +1994,13 @@ but, by contrast, write the comments this way for a @samp{#ifndef}:
|
||||
@dots{}
|
||||
#endif /* foo */
|
||||
@end group
|
||||
@group
|
||||
#ifndef foo
|
||||
@dots{}
|
||||
#endif /* not foo */
|
||||
@end group
|
||||
@end example
|
||||
|
||||
|
||||
@node Syntactic Conventions
|
||||
@section Clean Use of C Constructs
|
||||
|
||||
@ -2447,7 +2456,7 @@ printf ((nfiles != 1 ? gettext ("%d files processed")
|
||||
@end example
|
||||
|
||||
@noindent
|
||||
This can any method of forming the plural of the word for ``file'', and
|
||||
This can be any method of forming the plural of the word for ``file'', and
|
||||
also handles languages that require agreement in the word for
|
||||
``processed''.
|
||||
|
||||
|
@ -3,7 +3,7 @@
|
||||
@setfilename standards.info
|
||||
@settitle GNU Coding Standards
|
||||
@c UPDATE THIS DATE WHENEVER YOU MAKE CHANGES!
|
||||
@set lastupdate 04 July 1997
|
||||
@set lastupdate 18 February 1998
|
||||
@c %**end of header
|
||||
|
||||
@ifinfo
|
||||
@ -105,7 +105,7 @@ even if you write in another programming language. The rules often
|
||||
state reasons for writing in a certain way.
|
||||
|
||||
Corrections or suggestions for this document should be sent to
|
||||
@code{gnu@@prep.ai.mit.edu}. If you make a suggestion, please include a
|
||||
@code{gnu@@gnu.org}. If you make a suggestion, please include a
|
||||
suggested new wording for it; our time is limited. We prefer a context
|
||||
diff to the @file{standards.texi} or @file{make-stds.texi} files, but if
|
||||
you don't have those files, please mail your suggestion anyway.
|
||||
@ -678,7 +678,7 @@ Report bugs to @var{mailing-address}.
|
||||
Here is a table of long options used by GNU programs. It is surely
|
||||
incomplete, but we aim to list all the options that a new program might
|
||||
want to be compatible with. If you use names not already in the table,
|
||||
please send @samp{gnu@@prep.ai.mit.edu} a list of them, with their
|
||||
please send @samp{gnu@@gnu.org} a list of them, with their
|
||||
meanings, so we can update the table.
|
||||
|
||||
@c Please leave newlines between items in this table; it's much easier
|
||||
@ -1173,7 +1173,7 @@ Used in @code{su}.
|
||||
@item machine
|
||||
No listing of which programs already use this;
|
||||
someone should check to
|
||||
see if any actually do and tell @code{gnu@@prep.ai.mit.edu}.
|
||||
see if any actually do and tell @code{gnu@@gnu.org}.
|
||||
|
||||
@item macro-name
|
||||
@samp{-M} in @code{ptx}.
|
||||
@ -1976,6 +1976,11 @@ its sense}. @samp{#else} should have a comment describing the condition
|
||||
@dots{}
|
||||
#endif /* not foo */
|
||||
@end group
|
||||
@group
|
||||
#ifdef foo
|
||||
@dots{}
|
||||
#endif /* foo */
|
||||
@end group
|
||||
@end example
|
||||
|
||||
@noindent
|
||||
@ -1989,9 +1994,13 @@ but, by contrast, write the comments this way for a @samp{#ifndef}:
|
||||
@dots{}
|
||||
#endif /* foo */
|
||||
@end group
|
||||
@group
|
||||
#ifndef foo
|
||||
@dots{}
|
||||
#endif /* not foo */
|
||||
@end group
|
||||
@end example
|
||||
|
||||
|
||||
@node Syntactic Conventions
|
||||
@section Clean Use of C Constructs
|
||||
|
||||
@ -2447,7 +2456,7 @@ printf ((nfiles != 1 ? gettext ("%d files processed")
|
||||
@end example
|
||||
|
||||
@noindent
|
||||
This can any method of forming the plural of the word for ``file'', and
|
||||
This can be any method of forming the plural of the word for ``file'', and
|
||||
also handles languages that require agreement in the word for
|
||||
``processed''.
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user