]> sourceware.org Git - automake.git/commitdiff
* automake.in ($obsolete_rx): No need for `b(foob|bbar)b',
authorAkim Demaille <akim@epita.fr>
Sat, 14 Jul 2001 17:15:03 +0000 (17:15 +0000)
committerAkim Demaille <akim@epita.fr>
Sat, 14 Jul 2001 17:15:03 +0000 (17:15 +0000)
`b(foo|bar)b' is what we want.

ChangeLog
automake.in

index 22f85ccd73e65be37e262df7f7f9886bb799189d..8af95d7fd7a65c8caf4d3dba46ef2f420595a715 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-07-14  Akim Demaille  <akim@epita.fr>
+
+       * automake.in ($obsolete_rx): No need for `\b(foo\b|\bbar)\b',
+       `\b(foo|bar)\b' is what we want.
+
 2001-07-14  Akim Demaille  <akim@epita.fr>
 
        * m4/depend.m4 (AM_DEPENDENCIES): Don't define `depcpp' which is
index d0973284afa53f2c179c995167c9b289800669c7..c0173ceaa46e00ea619897c3ee3ada1bfae9f906 100755 (executable)
@@ -300,7 +300,7 @@ my %obsolete_macros =
      );
 
 # Regexp to match the above macros.
-my $obsolete_rx = '(\b' . join ('\b|\b', keys %obsolete_macros) . '\b)';
+my $obsolete_rx = '\b(' . join ('|', keys %obsolete_macros) . ')\b';
 \f
 
 
This page took 0.037387 seconds and 5 git commands to generate.