]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* acgeneral.m4 (_AC_COMPUTE_INT_COMPILE): Use ":" instead of
authorPavel Roskin <proski@gnu.org>
Thu, 9 Nov 2000 18:59:18 +0000 (18:59 +0000)
committerPavel Roskin <proski@gnu.org>
Thu, 9 Nov 2000 18:59:18 +0000 (18:59 +0000)
        "true".
        * tests/atgeneral.m4 (AT_INIT): Likewise.
        * tests/tools.at (Syntax of the scripts): Likewise.

ChangeLog
acgeneral.m4
lib/autoconf/general.m4
lib/autotest/general.m4
tests/atgeneral.m4
tests/tools.at

index 1f618d36d3eed0cfc4cc4776a0b3e4563fff1dcd..03afd3876761471cdc9dd01cd3705cc0d3d9d1ba 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2000-11-09  Pavel Roskin  <proski@gnu.org>
+
+       * acgeneral.m4 (_AC_COMPUTE_INT_COMPILE): Use ":" instead of
+       "true".
+       * tests/atgeneral.m4 (AT_INIT): Likewise.
+       * tests/tools.at (Syntax of the scripts): Likewise.
+
 2000-11-09  Pavel Roskin  <proski@gnu.org>
 
        * tests/m4sugar.at (m4_warn): Adjusted to accept stack dump when
index 1deacd97b4b0f99bac395b183ae7083bae3ac0bb..b8f444ce48decc1e53514e983768f93cadc0c4cf 100644 (file)
@@ -3214,13 +3214,13 @@ m4_define([_AC_COMPUTE_INT_COMPILE],
 [# Depending upon the size, compute the lo and hi bounds.
 AC_COMPILE_IFELSE([AC_LANG_BOOL_COMPILE_TRY([$3], [($1) >= 0])],
  [ac_lo=0 ac_try=0
-  while true; do
+  while :; do
     AC_COMPILE_IFELSE([AC_LANG_BOOL_COMPILE_TRY([$3], [($1) <= $ac_try])],
                    [ac_hi=$ac_try; break],
                    [ac_lo=`expr $ac_try + 1`; ac_try=`expr 2 '*' $ac_try + 1`])
   done],
  [ac_hi=-1 ac_try=-1
-  while true; do
+  while :; do
     AC_COMPILE_IFELSE([AC_LANG_BOOL_COMPILE_TRY([$3], [($1) >= $ac_try])],
                       [ac_lo=$ac_try; break],
                       [ac_hi=`expr $ac_try - 1`; ac_try=`expr 2 '*' $ac_try`])
index 1deacd97b4b0f99bac395b183ae7083bae3ac0bb..b8f444ce48decc1e53514e983768f93cadc0c4cf 100644 (file)
@@ -3214,13 +3214,13 @@ m4_define([_AC_COMPUTE_INT_COMPILE],
 [# Depending upon the size, compute the lo and hi bounds.
 AC_COMPILE_IFELSE([AC_LANG_BOOL_COMPILE_TRY([$3], [($1) >= 0])],
  [ac_lo=0 ac_try=0
-  while true; do
+  while :; do
     AC_COMPILE_IFELSE([AC_LANG_BOOL_COMPILE_TRY([$3], [($1) <= $ac_try])],
                    [ac_hi=$ac_try; break],
                    [ac_lo=`expr $ac_try + 1`; ac_try=`expr 2 '*' $ac_try + 1`])
   done],
  [ac_hi=-1 ac_try=-1
-  while true; do
+  while :; do
     AC_COMPILE_IFELSE([AC_LANG_BOOL_COMPILE_TRY([$3], [($1) >= $ac_try])],
                       [ac_lo=$ac_try; break],
                       [ac_hi=`expr $ac_try - 1`; ac_try=`expr 2 '*' $ac_try`])
index 5c3829afc8deb73c1937fd403fc736739bb6d408..1387b7541d37a0f96e1de3ffcb6cf1abe88bba65 100644 (file)
@@ -114,7 +114,7 @@ AT_DEFINE([AT_INIT],
 at_stop_on_error=false;
 # Shall we save and check stdout and stderr?
 # -n sets to false
-at_check_stds=true;
+at_check_stds=:;
 # Shall we
 # -s sets to false, and -v to true
 at_verbose=false
index 5c3829afc8deb73c1937fd403fc736739bb6d408..1387b7541d37a0f96e1de3ffcb6cf1abe88bba65 100644 (file)
@@ -114,7 +114,7 @@ AT_DEFINE([AT_INIT],
 at_stop_on_error=false;
 # Shall we save and check stdout and stderr?
 # -n sets to false
-at_check_stds=true;
+at_check_stds=:;
 # Shall we
 # -s sets to false, and -v to true
 at_verbose=false
index d346f4dda874f4d8c09f2ff49b7d2731ab964fa3..66ddde5e44ee3eb034ea3515c73f71b52d9bb69d 100644 (file)
@@ -37,7 +37,7 @@ AT_SETUP(Syntax of the scripts)
 # broken /bin/sh loop equally with `false', but it makes it easier to
 # test the robusteness in a good environment: just remove the `-n'.
 AT_DATA(endless.sh,
-[[while true
+[[while :
 do
   :
 done