>Yup!  Thazz about it!  It will also do some other minor things like turn
>
>if (blabla > blabla)
>    blabla();
>
>to
>
>if (blabla > blabla) {
>     blabla();
>}

Arrgh! Either leave it as it is, because this is the most concise 
and comprehensive way to put it or reformat it to

if (blabla > blabla)
{
    blabla();
}

which is the *only* way to recognize those braces that belong 
together. :-)

Best regards
Rainer Klute

                           Rainer Klute IT-Consulting GmbH i. Gr.
  Dipl.-Inform.
  Rainer Klute             E-Mail:  [EMAIL PROTECTED]
  K�rner Grund 24          Telefon: +49 172 2324824
D-44143 Dortmund           Telefax: +49 231 5349423


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to