2010-05-28 I bought Diomidis Spinellis's book ``Code Reading'' about two years ago. I started to read it back then but never finished it. A week ago, I started again. Now for the second time I'm heavily impressed by the book -- it is comparable wo Kernighan and Pike's ``The Practice of Programming''. I like to pick out one thing which will improve my code from now on: Loops with empty bodies are often formated poorly in source. (Page 38 in the book.) I'll do it this way now: for (...) [ continue; } The continue statement makes the semantics much more explicit. http://marmaro.de/lue/ markus schnalke