Method code for $buffer.from_list()

[Turn on line numbering]
arg list;
var buf, i;

// this differs from $list.to_buffer()
buf = `[];
for i in (list)
    buf += `[i];
return buf;

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

Tlon