# File lib/sup/util.rb, line 181
  def display_length
    if RUBY_VERSION < '1.9.1' && ($encoding == "UTF-8" || $encoding == "utf8")
      scan(/./u).size
    else
      size
    end
  end