Method code for $command_lib.format_relation()

[Turn on line numbering]
arg relation;
var x, str;

str = "";
for x in (relation) {
    if (type(x) == 'integer)
        str = str + "%" + tostr(x);
    else
        str += x;
}
return str;

// Created 27-Mar-1995 as a part of ColdCore, see: @help Credit

Tlon