I've applied this trivial patch to fix some comment typos.

Cheers,
Ralf

2007-05-17  Ralf Wildenhues  <[EMAIL PROTECTED]>

        * bin/autom4te.in: Fix typos.



Index: bin/autom4te.in
===================================================================
RCS file: /cvsroot/autoconf/autoconf/bin/autom4te.in,v
retrieving revision 1.106
diff -u -r1.106 autom4te.in
--- bin/autom4te.in	17 May 2007 02:43:12 -0000	1.106
+++ bin/autom4te.in	17 May 2007 08:12:06 -0000
@@ -61,7 +61,7 @@
 my $melt = 0;
 
 # Names of the cache directory, cache directory index, trace cache
-# prefix, and output cache prefix.  And the IO objet for the index.
+# prefix, and output cache prefix.  And the IO object for the index.
 my $cache;
 my $icache;
 my $tcache;
@@ -135,7 +135,7 @@
 # | % m4 input.m4 -da -t m4_eval
 # | %
 #
-# So we will merge them, i.e.  tracing `BUILTIN' or tracing
+# So we will merge them, i.e., tracing `BUILTIN' or tracing
 # `m4_BUILTIN' will be the same: tracing both, but honoring the
 # *last* trace specification.
 #
@@ -483,7 +483,7 @@
 # warn_forbidden ($WHERE, $WORD, %FORBIDDEN)
 # ------------------------------------------
 # $WORD is forbidden.  Warn with a dedicated error message if in
-# %FORBIDDEN, otherwise, a simple `error: possibly undefined macro'
+# %FORBIDDEN, otherwise a simple `error: possibly undefined macro'
 # will do.
 my $first_warn_forbidden = 1;
 sub warn_forbidden ($$%)
@@ -899,7 +899,7 @@
       my $file = find_file ("$_?", @include);
       # If a file which used to be included is no longer there, then
       # don't say it's missing (it might no longer be included).  But
-      # of course, that cause the output to be outdated (as if the
+      # of course, that causes the output to be outdated (as if the
       # time stamp of that missing file was newer).
       return 0
 	if ! $file;
@@ -972,13 +972,13 @@
   }
 
 # Open the index for update, and lock it.  autom4te handles several
-# files, but the index is the first and last file to be update, so
+# files, but the index is the first and last file to be updated, so
 # locking it is sufficient.
 $icache_file = new Autom4te::XFile $icache, O_RDWR|O_CREAT;
 $icache_file->lock (LOCK_EX);
 
 # Read the cache index if available and older than autom4te itself.
-# If autom4te is younger, then some structures such as C4che, might
+# If autom4te is younger, then some structures such as C4che might
 # have changed, which would corrupt its processing.
 Autom4te::C4che->load ($icache_file)
   if -f $icache && mtime ($icache) > mtime ($0);

Reply via email to