# File ext/widgets.rb, line 79
  def respond(text)
    text=text.to_s
    @line+=1
    if text==""
      text="<no output>"
    end
    text=justify(text) if text.index("\fNL")==nil
    text=text.split("\fNL")
    mult=false
    text.each { |ln|
      if ln.slice(0,4)=="\fERR"
        @text[@line]="!> "+ln.strip
      else
        @text[@line]="^> "+ln
      end
      @line+=1
      @text[@line]=">> "
    }
  end