Olaf Titz <olaf@bigred.inka.de> writes: >> if (w > 0) >> i += l; >> - else if (w < 0) >> + else if (w <= 0) >> return i == 0 ? w : i; >> } > this makes the second condition "if (true)". that how it is in 1.3.20, the else if (...) is now a simple else. --