Commit 44300950 authored by Eric Smith's avatar Eric Smith

Corrected missed #if in r57652.

parent b7f5ba16
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment