class RDoc::Parser::Ruby

def read_documentation_modifiers context, allowed

def read_documentation_modifiers context, allowed
  skip_tkspace_without_nl
  directive, value = read_directive allowed
  return unless directive
  @preprocess.handle_directive '', directive, value, context do |dir, param|
    if %w[notnew not_new not-new].include? dir then
      context.dont_rename_initialize = true
      true
    end
  end
end