Function: gomoku-prompt-for-other-game
gomoku-prompt-for-other-game is a byte-compiled function defined in
gomoku.el.gz.
Signature
(gomoku-prompt-for-other-game)
Documentation
Ask for another game, and start it.
Source Code
;; Defined in /usr/src/emacs/lisp/play/gomoku.el.gz
(defun gomoku-prompt-for-other-game ()
"Ask for another game, and start it."
(if (y-or-n-p "Another game? ")
(gomoku gomoku-board-width gomoku-board-height)
(error "Chicken!")))