# File Text/Format.rb, line 710
        def unexpand(to_unexpand = nil)
            to_unexpand = @text if to_unexpand.nil?
            if to_unexpand.class == Array
                to_unexpand.collect { |te| v << __unexpand(te) }
            else
                __unexpand(to_unexpand)
            end
        end