# File lib/termtter/hook.rb, line 14
    def match?(point)
      points.any? {|pt|
        case pt
        when String, Symbol
          pt.to_s == point.to_s
        when Regexp
          (pt =~ point.to_s) ? true : false
        else
          false
        end
      }
    end