commit | 44300950dc2ed13ec07d7077f8fbe8ba8cf22076 | [log] [tgz] |
---|---|---|
author | Eric Smith <eric@trueblade.com> | Wed Aug 29 12:43:12 2007 +0000 |
committer | Eric Smith <eric@trueblade.com> | Wed Aug 29 12:43:12 2007 +0000 |
tree | 7e42245a051840820835af6888d0ecae491cc434 | |
parent | b7f5ba16dbf86997257a25b11b09f0ebbd182559 [diff] [blame] |
Corrected missed #if in r57652.
diff --git a/Objects/stringlib/formatter.h b/Objects/stringlib/formatter.h index 5d06df4..fd7b123 100644 --- a/Objects/stringlib/formatter.h +++ b/Objects/stringlib/formatter.h
@@ -76,7 +76,9 @@ { switch (c) { case ' ': case '+': case '-': +#if ALLOW_PARENS_FOR_SIGN case '(': +#endif return 1; default: return 0;