Function: gomoku-offer-a-draw
gomoku-offer-a-draw is a byte-compiled function defined in
gomoku.el.gz.
Signature
(gomoku-offer-a-draw)
Documentation
Offer a draw and return t if Human accepted it.
Source Code
;; Defined in /usr/src/emacs/lisp/play/gomoku.el.gz
(defun gomoku-offer-a-draw ()
"Offer a draw and return t if Human accepted it."
(or (y-or-n-p "I offer you a draw. Do you accept it? ")
(not (setq gomoku-human-refused-draw t))))