summaryrefslogtreecommitdiff
path: root/lib/Automake/DisjConditions.pm
diff options
context:
space:
mode:
authorStefano Lattarini <stefano.lattarini@gmail.com>2012-02-23 20:25:26 +0100
committerStefano Lattarini <stefano.lattarini@gmail.com>2012-02-23 20:29:24 +0100
commit3e887a1324199c11004213b667145e7e5386eaa3 (patch)
tree9c55d820348fcdabdf45bfa40450d1b3894d1bff /lib/Automake/DisjConditions.pm
parentf8f22fea98fbaa1dcf0c1a0203063884d4e40f65 (diff)
downloadautomake-3e887a1324199c11004213b667145e7e5386eaa3.tar.gz
pm: do not quote `like this', as per GCS recommendation
This patch converts the internal perl modules used by automake and aclocal to the use of new quoting format 'like this' or "like this" rather than `like this'. * lib/Automake/ChannelDefs.pm, lib/Automake/Channels.pm, lib/Automake/Condition.pm, lib/Automake/Configure_ac.pm, lib/Automake/DisjConditions.pm, lib/Automake/FileUtils.pm, lib/Automake/General.pm, lib/Automake/Item.pm, lib/Automake/Rule.pm, lib/Automake/Getopt.pm, lib/Automake/Options.pm, lib/Automake/Struct.pm, lib/Automake/VarDef.pm, lib/Automake/Variable.pm, lib/Automake/Version.pm, lib/Automake/XFile.pm: Update and adjust quoting format throughout, in comments and diagnostic. Some minor related rewordings and reformatting since we are at it.
Diffstat (limited to 'lib/Automake/DisjConditions.pm')
-rw-r--r--lib/Automake/DisjConditions.pm8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Automake/DisjConditions.pm b/lib/Automake/DisjConditions.pm
index 4b305b8d5..cb9849558 100644
--- a/lib/Automake/DisjConditions.pm
+++ b/lib/Automake/DisjConditions.pm
@@ -136,7 +136,7 @@ ignored.
=cut
# Keys in this hash are DisjConditions strings. Values are the
-# associated object DisjConditions. This is used by `new' to reuse
+# associated object DisjConditions. This is used by 'new' to reuse
# DisjConditions objects with identical conditions.
use vars '%_disjcondition_singletons';
@@ -146,8 +146,8 @@ sub new ($;@)
my @filtered_conds = ();
for my $cond (@conds)
{
- confess "`$cond' isn't a reference" unless ref $cond;
- confess "`$cond' isn't an Automake::Condition"
+ confess "'$cond' isn't a reference" unless ref $cond;
+ confess "'$cond' isn't an Automake::Condition"
unless $cond->isa ("Automake::Condition");
# This is a disjunction of conditions, so we drop
@@ -462,7 +462,7 @@ sub sub_conditions ($$)
my ($self, $subcond) = @_;
# Make $subcond blindingly apparent in the DisjConditions.
- # For instance `$b->multiply($a->conds)' (from the POD example) is:
+ # For instance '$b->multiply($a->conds)' (from the POD example) is:
# (new Automake::Condition ("FALSE"),
# new Automake::Condition ("A_TRUE", "B_FALSE", "C_FALSE"),
# new Automake::Condition ("A_TRUE", "B_FALSE", "C_TRUE"),