# File lib/loquacious.rb, line 79
    def remove( *args )
      args.each { |name|
        name = name.to_s.delete('=')
        code = "undef_method :\#{name} rescue nil\nundef_method :\#{name}= rescue nil\n"
        Loquacious::Configuration.module_eval code
        Loquacious::Configuration::DSL.module_eval code
      }
    end