Small improve performance

This commit is contained in:
Stas Degteff 2008-01-20 12:49:49 +00:00
parent b56923a3ec
commit 1632703681

View File

@ -500,7 +500,7 @@ void edit_addressbook(GMsg* msg);
inline bool issoftcr(char c)
{
return (c == SOFTCR) and not WideDispsoftcr;
return not WideDispsoftcr and (c == SOFTCR);
}