Change 27713 by [EMAIL PROTECTED] on 2006/04/04 12:42:44
FEATURE_IS_ENABLED takes only one parameter now, so reflect that in
perl_keyword.pl
Affected files ...
... //depot/perl/perl_keyword.pl#9 edit
Differences ...
==== //depot/perl/perl_keyword.pl#9 (text) ====
Index: perl/perl_keyword.pl
--- perl/perl_keyword.pl#8~26675~ 2006-01-06 07:50:34.000000000 -0800
+++ perl/perl_keyword.pl 2006-04-04 05:42:44.000000000 -0700
@@ -86,10 +86,9 @@
END
}
elsif (my $feature = $feature_kw{$k}) {
- my $feature_len = length($feature);
$feature =~ s/([\\"])/\\$1/g;
return <<END;
-return (FEATURE_IS_ENABLED("$feature", $feature_len) ? ${sign}KEY_$k : 0);
+return (FEATURE_IS_ENABLED("$feature") ? ${sign}KEY_$k : 0);
END
}
return <<END;
End of Patch.