bison-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: FYI: Strip blanks from %*-param


From: Paul Hilfinger
Subject: Re: FYI: Strip blanks from %*-param
Date: Mon, 27 Sep 2004 17:16:52 -0700

> So far I've always been writing things like
>   while (*++x) /* NOP */;
> and never realized `continue' would work as well 
> and spare me one keystroke :)

Or, you can write

    while (...) { }

since empty braces are what you use for functions or C++ constructors 
that do nothing.  They're "big" enough not to be overlooked, unlike

    while (...); 
or
    while (...)
      ;
 
Paul Hilfinger




reply via email to

[Prev in Thread] Current Thread [Next in Thread]