* aclocal.in: (): No need for `\b(foo\b|\bbar)\b',
authorAkim Demaille <akim@epita.fr>
Sat, 14 Jul 2001 17:32:10 +0000 (17:32 +0000)
committerAkim Demaille <akim@epita.fr>
Sat, 14 Jul 2001 17:32:10 +0000 (17:32 +0000)
`\b(foo|bar)\b' is what we want.

ChangeLog
aclocal.in

index 8af95d7..57527e6 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,7 @@
 
        * automake.in ($obsolete_rx): No need for `\b(foo\b|\bbar)\b',
        `\b(foo|bar)\b' is what we want.
+       * aclocal.in: Likewise.
 
 2001-07-14  Akim Demaille  <akim@epita.fr>
 
index aba9db8..a6febf2 100644 (file)
@@ -104,7 +104,7 @@ my %obsolete_macros =
      );
 
 # Regexp to match the above macros.
-$obsolete_rx = '(\b' . join ('\b|\b', keys %obsolete_macros) . '\b)';
+$obsolete_rx = '\b(' . join ('|', keys %obsolete_macros) . ')\b';
 
 # Matches a macro definition.
 $ac_defun_rx = "AC_DEFUN\\(\\[?([^],)\n]+)\\]?";