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