Steve Youngs <steve(a)sxemacs.org> writes:
* nix <nix(a)esperi.org.uk> writes:
> + (if (= value 0)
> + (setq value itimer-short-interval))
Would it be any better (or make any difference) if this was written
as:
,----
| (when (zerop value)
| (setq value itimer-short-interval))
`----
Definitely, when/zerop forms looks much better (thats why `when' and
`zerop' exists after all), however it does not makes any difference in
effects.
--
lg