# File mod_docs/local.rb, line 43
  def clone_suffix(curr_map)
    curr_map = curr_map.dup
    for c, next_map in curr_map
      next if (c == :content_type)
      curr_map[c] = clone_suffix(next_map)
    end
    curr_map
  end