From 44300950dc2ed13ec07d7077f8fbe8ba8cf22076 Mon Sep 17 00:00:00 2001 From: Eric Smith Date: Wed, 29 Aug 2007 12:43:12 +0000 Subject: [PATCH] Corrected missed #if in r57652. --- Objects/stringlib/formatter.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Objects/stringlib/formatter.h b/Objects/stringlib/formatter.h index 5d06df42f5..fd7b123d42 100644 --- a/Objects/stringlib/formatter.h +++ b/Objects/stringlib/formatter.h @@ -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; -- 2.50.0