727a728,748
> bool
> initText(const string &filename, bool desc, bool compat)
> {
> static Text text;
> static bool connected = false;
>
> if (connected)
> return false;
>
> extern list<Output *> OutputList;
>
> text.open(*simout.find(filename));
> text.descriptions = desc;
> text.compat = compat;
> OutputList.push_back(&text);
> connected = true;
>
> return true;
> }
>
>