Update of /src/master/dx/src/uipp/widgets In directory opendx.watson.ibm.com:/tmp/cvs-serv34778
Modified Files:
Findroute.c
Log Message:
Somewhere along the line, the line
if (original_line = ww->workspace.lines)
was changed to
if (original_line == ww->workspace.lines)
I think the first was right; an assignment and test combined.
Not very obvious, though. I changed it to
if ((original_line = ww->workspace.lines) != NULL)
which I think is clearer.
