summaryrefslogtreecommitdiff
path: root/doc/standards.texi
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2012-03-11 08:53:18 -0700
committerKarl Berry <karl@freefriends.org>2012-03-11 08:53:18 -0700
commita7f54e0c79aa1c7147cd409657c54245169f821f (patch)
treea1ded914af1c4f0d2a40917adae2dc27a4828edf /doc/standards.texi
parent64ed3c2754b58db50bd86434b7b75aa484fff31d (diff)
downloadgnulib-a7f54e0c79aa1c7147cd409657c54245169f821f.tar.gz
autoupdate
Diffstat (limited to 'doc/standards.texi')
-rw-r--r--doc/standards.texi10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/standards.texi b/doc/standards.texi
index 4ba94269fc..fc0761f5c1 100644
--- a/doc/standards.texi
+++ b/doc/standards.texi
@@ -3,7 +3,7 @@
@setfilename standards.info
@settitle GNU Coding Standards
@c This date is automagically updated when you save this file:
-@set lastupdate February 5, 2012
+@set lastupdate March 8, 2012
@c %**end of header
@dircategory GNU organization
@@ -2655,10 +2655,10 @@ Don't make the program ugly just to placate static analysis tools such
as @command{lint}, @command{clang}, and GCC with extra warnings
options such as @option{-Wconversion} and @option{-Wundef}. These
tools can help find bugs and unclear code, but they can also generate
-so many false alarms that that it hurts readability to silence them
-with unnecessary casts, wrappers, and other complications. For
-example, please don't insert casts to @code{void} or calls to
-do-nothing functions merely to pacify a lint checker.
+so many false alarms that it hurts readability to silence them with
+unnecessary casts, wrappers, and other complications. For example,
+please don't insert casts to @code{void} or calls to do-nothing
+functions merely to pacify a lint checker.
Declarations of external functions and functions to appear later in the
source file should all go in one place near the beginning of the file