/*
* call-seq:
* substitute_entities=(boolean)
*
* Set the global XML default for substitute entities.
*/
static VALUE substitute_entities_set(VALUE klass, VALUE value)
{
xmlSubstituteEntitiesDefault(NUM2INT(value));
return Qnil ;
}