Patch from Jean Wolter

expr currently always adds even if told to subtract
This commit is contained in:
Glenn L McGrath 2003-09-08 23:19:12 +00:00
parent 5875be406e
commit 07f6b95d8f

View File

@ -438,7 +438,7 @@ static VALUE *eval3 (void)
if (nextarg ("+")) if (nextarg ("+"))
op = '+'; op = '+';
else if (nextarg ("-")) else if (nextarg ("-"))
op = '+'; op = '-';
else else
return l; return l;
args++; args++;