On Mon, May 07, 2007 at 11:07:59PM +0200, Uwe Stöhr wrote: > Attached is the patch that fixes the problem, that babel isn't called when > you are foreign languages in CJK and Armenian-documents. > > I think this is now the last remaining babel bug. > > Is my patch correct? It works here for all my testcases but you have > perhaps a better solution. > > --- > > I have a stupid C++ question: > > How is the syntax in C++ for this logic: > > if ( > (a == 1) && (b == 1) && > ((C == 1) || (C == -1)) > ) > > I mean how can the OR be included into an AND?
The only or-less version I can think of is if (a == 1 && b == 1 && C*C == 1) But that's a bit too obfuscated for my taste... Andre'
