* Makefile.am (check-texinfo): Enforce the zeros vs. zeroes consistency.
authorJim Meyering <jim@meyering.net>
Sat, 8 Jul 2006 05:31:59 +0000 (05:31 +0000)
committerJim Meyering <jim@meyering.net>
Sat, 8 Jul 2006 05:31:59 +0000 (05:31 +0000)
doc/ChangeLog
doc/Makefile.am

index 35660ff9dc8d3e856111b65abb1266ec3c3aa2f0..3902750439eba1c8dd97778c43da7f3dda5166cd 100644 (file)
@@ -1,3 +1,7 @@
+2006-07-08  Jim Meyering  <jim@meyering.net>
+
+       * Makefile.am (check-texinfo): Enforce the zeros vs. zeroes consistency.
+
 2006-07-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
 
        * coreutils.texi: Fix some typos.  Use `zeros' consistently (both
index b6be901d534d235e2b21f843e5d07e887a63bfc5..ac5b400bf8f65a07c7c9bfcc374e6e46834ff72f 100644 (file)
@@ -30,7 +30,8 @@ W_ = ([^A-Za-z0-9_]|$$)
 
 # List words/regexps here that should not appear in the texinfo documentation.
 # E.g., use @sc{nul}, not `NUL'
-# and use `time zone', not `timezone'.
+# Use `time zone', not `timezone'.
+# Use `zeros', not `zeroes' (nothing wrong with `zeroes'. just be consistent).
 check-texinfo:
        fail=0; \
        grep timezone $(srcdir)/*.texi && fail=1; \
@@ -45,6 +46,7 @@ check-texinfo:
        $(PERL) -e 1 2> /dev/null && { $(PERL) -ne \
          '/\bPOSIX\b/ && !/\@acronym{POSIX}/ && !/^\* / || /{posix}/ and print,exit 1' \
          $(srcdir)/*.texi 2> /dev/null || fail=1; }; \
+       $(EGREP) -i '$(_W)zeroes$(W_)' $(srcdir)/*.texi && fail=1; \
        $(EGREP) -i '$(_W)builtins?$(W_)' $(srcdir)/*.texi && fail=1; \
        $(EGREP) -i '$(_W)path(name)?s?$(W_)' $(srcdir)/*.texi \
          | $(EGREP) -v '@vindex PATH$$|@env[{]PATH[}]' && fail=1; \