On 6 May 2014 16:05, Mark Harmstone <hellas(a)burntcomma.com> wrote:
+ if (flags & DIGCF_ALLCLASSES && class)
+ flags -= DIGCF_ALLCLASSES;
This works, of course, but the usual way to do that kind of thing
would be "if (class) flags &= ~DIGCF_ALLCLASSES;"