Method code for $mail_lib.indent_reply()

[Turn on line numbering]
arg text;
var l, out;

out = [];
for l in (text) {
    if (!l.match_begin(">"))
        out += l.wrap_lines(65, "> ", 1);
    else
        out += [">" + l];
}
return out;

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

Tlon