--- xmil/common/rect.c 2004/08/18 15:42:32 1.2 +++ xmil/common/rect.c 2008/06/02 20:07:30 1.3 @@ -43,7 +43,7 @@ void rect_enumout(const RECT_T *tag, con RECT_T rect; if ((tag != NULL) && (base != NULL) && (outcb != NULL)) { - // base.top -> tag.top + /* base.top -> tag.top */ rect.top = base->top; rect.bottom = min(tag->top, base->bottom); if (rect.top < rect.bottom) { @@ -53,7 +53,7 @@ void rect_enumout(const RECT_T *tag, con rect.top = rect.bottom; } - // -> tag.bottom + /* -> tag.bottom */ rect.bottom = min(tag->bottom, base->bottom); if (rect.top < rect.bottom) { rect.left = base->left; @@ -69,7 +69,7 @@ void rect_enumout(const RECT_T *tag, con rect.top = rect.bottom; } - // -> base.bottom + /* -> base.bottom */ rect.bottom = base->bottom; if (rect.top < rect.bottom) { rect.left = base->left;