# File lib/action_view/helpers/text_helper.rb, line 55
      def safe_concat(string)
        output_buffer.respond_to?(:safe_concat) ? output_buffer.safe_concat(string) : concat(string)
      end