# File lib/guard.rb, line 511
    def quit?
      STDIN.read_nonblock(1)
      false
    rescue Errno::EINTR
      false
    rescue Errno::EAGAIN
      false
    rescue EOFError
      true
    end