[gpm]some cleanup

Alessandro Rubini rubini@gnu.org
Sat, 27 Jul 2002 13:16:36 +0200


Hello.

> -#define CHECKFAIL(count)   ((count)==0 && noneofthem())
> +#define CHECKFAIL(count)   if (count==0) noneofthem();

please don't. This turns an expression into a statement, with definitely
no advantage. Besiders, the trailing semicolong is a blatant error.

Nico, please don't apply this part.

Similarly, the last hunk has no advantage. It's only more verbose
by using "else if" where "&&" is perfectly fine and definitely more
readable (since you don't need to track every else it its own it).

I've no comments on other hunks.  However, I'm definitely happy my
surname gets fixed :)

/alessandro