# File lib/merb-helpers/form/helpers.rb, line 29
  def with_form_context(name, builder)
    form_contexts.push(_new_form_context(name, builder))
    ret = yield
    form_contexts.pop
    ret
  end