Method code for $command_lib.format_relation()

[Turn off line numbering]
  1: arg relation;
  2: var x, str;
  3: 
  4: str = "";
  5: for x in (relation) {
  6:     if (type(x) == 'integer)
  7:         str = str + "%" + tostr(x);
  8:     else
  9:         str += x;
 10: }
 11: return str;

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

Tlon