Method code for $has_text.set_text()

[Turn on line numbering]
arg txt;

// resets ,text to the list sent
if (!.is_writable_by(sender()) && sender() != this())
    throw(~perm, "Permission Denied.");
if (.get_setting("plaintext", $has_text)) {
    if (type(txt) == 'string)
        text = [txt];
    else
        text = txt;
} else {
    text = $compiler.compile_cml(txt);
}

// $#Edited: 23 May 97 07:35 $user_bruce
// $#Edited: 23 May 97 11:29 $user_bruce

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

the Cold Dark