Corrected missed #if in r57652.

This commit is contained in:
Eric Smith 2007-08-29 12:43:12 +00:00
parent b7f5ba16db
commit 44300950dc
1 changed files with 2 additions and 0 deletions

View 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;