]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* bin/autom4te.in (@my_warning): Remove, handled by `autom4te.cfg'.
authorAkim Demaille <akim@epita.fr>
Sun, 23 Sep 2001 17:16:28 +0000 (17:16 +0000)
committerAkim Demaille <akim@epita.fr>
Sun, 23 Sep 2001 17:16:28 +0000 (17:16 +0000)
ChangeLog
bin/autom4te.in

index 7996584c7470782ab58cceb6c0cd11e572bcc704..5b148714353eaa1bfb630e9dfda8c36d6db482d7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2001-09-23  Akim Demaille  <akim@epita.fr>
+
+       * bin/autom4te.in (@my_warning): Remove, handled by `autom4te.cfg'.
+
 2001-09-23  Akim Demaille  <akim@epita.fr>
 
        * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Fix shell
index 30b14a5d09beb0b3422de1722c46babd736dad0b..287528eaba454da77657a50ad8a2b71e489c8fa5 100644 (file)
@@ -266,8 +266,7 @@ my %trace;
 # FIXME: What about `sinclude'?
 my @preselect = ('include', 'm4_pattern_allow', 'm4_pattern_forbid');
 
-# Autom4te's default warnings, and the actual list of warnings.
-my @my_warning = ('syntax');
+# List of warnings.
 my @warning;
 
 # M4 include path.
@@ -565,8 +564,7 @@ sub handle_m4 ($@)
   # 2. $WARNINGS, $3 command line options, in that order.
   # Set them in the order expected by the M4 macros: the converse.
   my $m4_warnings =
-    lc join (',', reverse (@my_warning,
-                          split (',', ($ENV{'WARNINGS'} || '')),
+    lc join (',', reverse (split (',', ($ENV{'WARNINGS'} || '')),
                           map { split /,/ } @warning));
 
   # GNU m4 appends when using --error-output.