[m-dev.] for review: a primitive four-port debugger
Fergus Henderson
fjh at cs.mu.oz.au
Wed Dec 24 15:52:15 AEDT 1997
On 24-Dec-1997, Zoltan Somogyi <zs at cs.mu.oz.au> wrote:
>
> Index: runtime/mercury_trace.c
The indentation of if-then-elses should be as described in
the Mercury C coding guidelines
if (...) {
...
} else {
...
}
not
if (...)
{
...
}
else
{
...
}
Similarly it should be
switch (...) {
not
switch (...)
{
Apart from that, this change looks fine.
--
Fergus Henderson <fjh at cs.mu.oz.au> | "I have always known that the pursuit
WWW: <http://www.cs.mu.oz.au/~fjh> | of excellence is a lethal habit"
PGP: finger fjh at 128.250.37.3 | -- the last words of T. S. Garp.
More information about the developers
mailing list