]> granicus.if.org Git - python/commitdiff
Corrected missed #if in r57652.
authorEric Smith <eric@trueblade.com>
Wed, 29 Aug 2007 12:43:12 +0000 (12:43 +0000)
committerEric Smith <eric@trueblade.com>
Wed, 29 Aug 2007 12:43:12 +0000 (12:43 +0000)
Objects/stringlib/formatter.h

index 5d06df42f55a7719f31f1b5c760db7ce1e1b08cd..fd7b123d42cea566c0191b5c4ff4e419ba481c12 100644 (file)
@@ -76,7 +76,9 @@ is_sign_element(STRINGLIB_CHAR c)
 {
     switch (c) {
     case ' ': case '+': case '-':
+#if ALLOW_PARENS_FOR_SIGN
     case '(':
+#endif
         return 1;
     default:
         return 0;