automake-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Automake-commit] [SCM] GNU Automake branch, branch-1-10, updated. Relea


From: Ralf Wildenhues
Subject: [Automake-commit] [SCM] GNU Automake branch, branch-1-10, updated. Release-1-10-1-35-gdec7a69
Date: Sun, 05 Oct 2008 19:17:22 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Automake".

http://git.sv.gnu.org/gitweb/?p=automake.git;a=commitdiff;h=dec7a691664c79ca0474b169cde1804884371f50

The branch, branch-1-10 has been updated
       via  dec7a691664c79ca0474b169cde1804884371f50 (commit)
      from  6087eb9b6047070c33eaaa695fd9914ace08df79 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit dec7a691664c79ca0474b169cde1804884371f50
Author: Ralf Wildenhues <address@hidden>
Date:   Sun Oct 5 21:15:25 2008 +0200

    Fix some comment typos.
    
    * automake.in: Fix some comment typos.
    * lib/Automake/Condition.pm: Likewise.
    * lib/Automake/DisjConditions.pm: Likewise.
    * lib/Automake/Variable.pm: Likewise.
    * lib/Automake/tests/DisjConditions.pl: Likewise.
    
    Signed-off-by: Ralf Wildenhues <address@hidden>

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog                            |    9 +++++++++
 automake.in                          |    4 ++--
 lib/Automake/Condition.pm            |    5 +++--
 lib/Automake/DisjConditions.pm       |    4 ++--
 lib/Automake/Variable.pm             |    4 ++--
 lib/Automake/tests/DisjConditions.pl |    4 ++--
 6 files changed, 20 insertions(+), 10 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 29d3f52..127ea20 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2008-10-05  Ralf Wildenhues  <address@hidden>
+
+       Fix some comment typos.
+       * automake.in: Fix some comment typos.
+       * lib/Automake/Condition.pm: Likewise.
+       * lib/Automake/DisjConditions.pm: Likewise.
+       * lib/Automake/Variable.pm: Likewise.
+       * lib/Automake/tests/DisjConditions.pl: Likewise.
+
 2008-09-22  Ralf Wildenhues  <address@hidden>
 
        * tests/aclibobj.test: Fix race condition.
diff --git a/automake.in b/automake.in
index 840f4d0..3f6cc8b 100755
--- a/automake.in
+++ b/automake.in
@@ -5855,7 +5855,7 @@ sub cond_stack_endif ($$$)
 # &define_pretty_variable ($VAR, $COND, $WHERE, @VALUE)
 # -----------------------------------------------------
 # Like define_variable, but the value is a list, and the variable may
-# be defined conditionally.  The second argument is the Condition
+# be defined conditionally.  The second argument is the condition
 # under which the value should be defined; this should be the empty
 # string to define the variable unconditionally.  The third argument
 # is a list holding the values to use for the variable.  The value is
@@ -6961,7 +6961,7 @@ sub am_install_var
       # Use the location of the currently processed variable as context.
       $where->push_context ("while processing `$one_name'");
 
-      # The variable containing all file to distribute.
+      # The variable containing all files to distribute.
       my $distvar = "\$($one_name)";
       $distvar = shadow_unconditionally ($one_name, $where)
        if ($dist_p && $one_var->has_conditional_contents);
diff --git a/lib/Automake/Condition.pm b/lib/Automake/Condition.pm
index 1cf3647..65ceab8 100644
--- a/lib/Automake/Condition.pm
+++ b/lib/Automake/Condition.pm
@@ -1,4 +1,5 @@
-# Copyright (C) 1997, 2001, 2002, 2003, 2006  Free Software Foundation, Inc.
+# Copyright (C) 1997, 2001, 2002, 2003, 2006, 2008  Free Software
+# Foundation, Inc.
 
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -274,7 +275,7 @@ sub conds ($ )
   return sort @conds;
 }
 
-# Undocumented, shouldn't be needed out of this class.
+# Undocumented, shouldn't be needed outside of this class.
 sub has ($$)
 {
   my ($self, $cond) = @_;
diff --git a/lib/Automake/DisjConditions.pm b/lib/Automake/DisjConditions.pm
index f23f1b4..895707d 100644
--- a/lib/Automake/DisjConditions.pm
+++ b/lib/Automake/DisjConditions.pm
@@ -112,7 +112,7 @@ follows.
 
   (COND1 and COND2) or ((not COND3) and COND4)
 
-That's indeed the condition into which C<VAR> has a value.
+That's indeed the condition in which C<VAR> has a value.
 
 Like C<Condition> objects, a C<DisjConditions> object is unique
 with respect to its conditions.  Two C<DisjConditions> objects created
@@ -178,7 +178,7 @@ sub new ($;@)
   # Else, create a new DisjConditions.
 
   # Store conditions as keys AND as values, because blessed
-  # objects are converted to string when used as keys (so
+  # objects are converted to strings when used as keys (so
   # at least we still have the value when we need to call
   # a method).
   my %h = map {$_ => $_} @filtered_conds;
diff --git a/lib/Automake/Variable.pm b/lib/Automake/Variable.pm
index 3334927..c1d244a 100644
--- a/lib/Automake/Variable.pm
+++ b/lib/Automake/Variable.pm
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
+# Copyright (C) 2003, 2004, 2005, 2006, 2008  Free Software Foundation, Inc.
 
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -1269,7 +1269,7 @@ following arguments:
                    during recursion
 
 If C<inner_expand> is set, variable references occurring in filename
-(as in C<$(BASE).ext>) are expansed before the filename is passed to
+(as in C<$(BASE).ext>) are expanded before the filename is passed to
 C<&fun_item>.
 
 If C<skip_ac_subst> is set, Autoconf @substitutions@ will be skipped,
diff --git a/lib/Automake/tests/DisjConditions.pl 
b/lib/Automake/tests/DisjConditions.pl
index 75e8d85..efda9d1 100644
--- a/lib/Automake/tests/DisjConditions.pl
+++ b/lib/Automake/tests/DisjConditions.pl
@@ -1,4 +1,4 @@
-# Copyright (C) 2001, 2002, 2003  Free Software Foundation, Inc.
+# Copyright (C) 2001, 2002, 2003, 2008  Free Software Foundation, Inc.
 #
 # This file is part of GNU Automake.
 #
@@ -237,7 +237,7 @@ sub test_simplify ()
          return 1;
        }
 
-      # Also exercize invert() while we are at it.
+      # Also exercise invert() while we are at it.
 
       my $inv1 = $set->invert->simplify;
       my $inv2 = $sim->invert->simplify;


hooks/post-receive
--
GNU Automake




reply via email to

[Prev in Thread] Current Thread [Next in Thread]