Function: gomoku-prompt-for-move

gomoku-prompt-for-move is a byte-compiled function defined in gomoku.el.gz.

Signature

(gomoku-prompt-for-move)

Documentation

Display a message asking for Human's move.

Source Code

;; Defined in /usr/src/emacs/lisp/play/gomoku.el.gz
;;;
;;; PROMPTING THE HUMAN PLAYER.
;;;

(defun gomoku-prompt-for-move ()
  "Display a message asking for Human's move."
  (message (if (zerop gomoku-number-of-human-moves)
	       "Your move?  (Move to a free square and hit X, RET ...)"
	       "Your move?")))