Method code for $builder._ar__comment()

[Turn on line numbering]
arg args, opts, request;
var text, fmt, cmt, n, u, msg, id;

n = request.group().name();
id = request.id();
.tell("** Commenting on Action Request #" + id);
cmt = .read("** Enter \".\" to finish or \"@abort\" to abort.");
if (type(cmt) != 'list || !cmt)
    return "** No comments added.";
request.add_comment(cmt);
.tell("** Comments added to " + n + " AR #" + id);
return ._ar__mailmsg(request, cmt);

["// Created 26-Mar-1995 as a part of ColdCore, see: @help Credit"]

the Cold Dark