[Python-checkins] r71618 - in python/branches/py3k-short-float-repr: configure configure.in

mark.dickinson python-checkins at python.org
Wed Apr 15 15:40:49 CEST 2009


Author: mark.dickinson
Date: Wed Apr 15 15:40:49 2009
New Revision: 71618

Log:
Fix confusing indentation


Modified:
   python/branches/py3k-short-float-repr/configure
   python/branches/py3k-short-float-repr/configure.in

Modified: python/branches/py3k-short-float-repr/configure
==============================================================================
--- python/branches/py3k-short-float-repr/configure	(original)
+++ python/branches/py3k-short-float-repr/configure	Wed Apr 15 15:40:49 2009
@@ -1,5 +1,5 @@
 #! /bin/sh
-# From configure.in Revision: 71613 .
+# From configure.in Revision: 71616 .
 # Guess values for system-dependent variables and create Makefiles.
 # Generated by GNU Autoconf 2.61 for python 3.1.
 #
@@ -21885,7 +21885,7 @@
                     : "=a" (ax), "=r" (bx), "=c" (cx), "=d" (dx)
                     : "a" (func)
                     : "cc" );
-                        if ((dx & (1U << 25)) && (dx & (1U << 26)))
+                if ((dx & (1U << 25)) && (dx & (1U << 26)))
                     return 0;
                 else
                     return 1;

Modified: python/branches/py3k-short-float-repr/configure.in
==============================================================================
--- python/branches/py3k-short-float-repr/configure.in	(original)
+++ python/branches/py3k-short-float-repr/configure.in	Wed Apr 15 15:40:49 2009
@@ -3188,7 +3188,7 @@
                     : "=a" (ax), "=r" (bx), "=c" (cx), "=d" (dx)
                     : "a" (func)
                     : "cc" );
-                        if ((dx & (1U << 25)) && (dx & (1U << 26)))
+                if ((dx & (1U << 25)) && (dx & (1U << 26)))
                     return 0;
                 else
                     return 1;


More information about the Python-checkins mailing list