class Rouge::RegexLexer

def pop!(times=1)

that number of times.
Pop the state stack. If a number is passed in, it will be popped
def pop!(times=1)
  raise 'empty stack!' if stack.empty?
  puts "    popping stack: #{times}" if @debug
  stack.pop(times)
  nil
end