# File nqxml/dispatcher.rb, line 84
    def star_match(context,registry)
      cstar = context.dup
      matched = false
      until matched || cstar.empty?
	cstar[-1] = "*"
	matched = registry[cstar]
	cstar.shift unless matched
      end
      matched
    end