# File text/format.rb, line 905
905:     def unexpand(to_unexpand = nil)
906:       to_unexpand = @text if to_unexpand.nil?
907:       if to_unexpand.class == Array
908:         to_unexpand.collect { |te| v << __unexpand(te) }
909:       else
910:         __unexpand(to_unexpand)
911:       end
912:     end