]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* bin/autom4te.in: Fix typos.
authorRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Thu, 17 May 2007 08:20:31 +0000 (08:20 +0000)
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Thu, 17 May 2007 08:20:31 +0000 (08:20 +0000)
ChangeLog
bin/autom4te.in

index fb8c064b361aba7efdcb5d60f728d22741c0cf65..b06ab4b2802e17f595ca0b28efbb37fe30ddc859 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2007-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
+
+       * bin/autom4te.in: Fix typos.
+
 2007-05-16  Noah Misch  <noah@cs.caltech.edu>
 
        * bin/autoconf.as: Handle `-' just like other input files.
index 09f7cf9b58579a449275c494785838fa06dfdb70..3ed73a64ca45cd8212c165e50a615ce6fdc36539 100644 (file)
@@ -61,7 +61,7 @@ my $mode = "0666";
 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 @@ map { s/:.*//;s/\W// } @m4_builtin;
 # | % 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 @@ sub handle_m4 ($@)
 # 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 @@ sub up_to_date ($)
       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 @@ if (! -d "$cache")
   }
 
 # 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);