# File lib/facet/filelist.rb, line 125
  def exclude(*patterns)
    # TODO: check for pending
    patterns.compact.each { |pat| @exclude_patterns << pat }
    if ! @pending
      calculate_exclude_regexp
      reject! { |fn| fn =~ @exclude_re }
    end
  end