Method code for $mail_lib.indent_reply()

[Turn off line numbering]
  1: arg text;
  2: var l, out;
  3: 
  4: out = [];
  5: for l in (text) {
  6:     if (!l.match_begin(">"))
  7:         out += l.wrap_lines(65, "> ", 1);
  8:     else
  9:         out += [">" + l];
 10: }
 11: return out;

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

Tlon